Merge branch 'dev' into feature-add-server-context-menu-long-press
This commit is contained in:
commit
fb12b9c6b2
|
|
@ -2,7 +2,7 @@
|
|||
"project_info": {
|
||||
"project_number": "123456789012",
|
||||
"project_id": "revolt-android-dev",
|
||||
"storage_bucket": "revolt-android-dev.appspot.com"
|
||||
"storage_bucket": "revolt-chat.appspot.com"
|
||||
},
|
||||
"client": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,12 +6,12 @@ template: doc
|
|||
|
||||
This page contains the guidelines for setting up your development environment for Revolt on Android. These guidelines are important to ensure that your development environment is set up correctly and you can start contributing to the project.
|
||||
|
||||
If you want to compile the app for yourself, you can also follow these guidelines, however you may not need Android Studio and it may be possible to build the app using the command line, out of the scope of this guide.
|
||||
If you want to compile the app yourself, you can follow these guidelines. You may not need Android Studio, as it’s possible to build the app from the command line. GitHub Codespaces automates most of the process for you if you want to go that route and this guide covers those steps, but won’t go into detail on other command-line methods.
|
||||
|
||||
:::danger
|
||||
It may be tempting to skip some of these steps, but make sure you follow them to ensure that your development environment is set up correctly.
|
||||
|
||||
Note: If you are doing this in Github Codespaces, steps 1-10 will be done for you.
|
||||
Note: If you are doing this in Github Codespaces, steps 1-10 will be done for you. Also note that while small codespace instances can build this app, it's recommend to use 8-core or above for best results.
|
||||
:::
|
||||
|
||||
import { Tabs, TabItem, Steps } from "@astrojs/starlight/components"
|
||||
|
|
@ -156,6 +156,9 @@ import { Tabs, TabItem, Steps } from "@astrojs/starlight/components"
|
|||
You can build the project by clicking on the 'Run' button in Android Studio.
|
||||
If asked, build the `:app` module.
|
||||
|
||||
If building within Github Codespaces, you can build a fresh debug apk by running `./gradlew assembledebug --no-daemon` from the root of the project.
|
||||
Upon completion, the apk will be within `app/build/outputs/apk/debug/`
|
||||
|
||||
12. **You're all set!** You can now start contributing to Revolt on Android.
|
||||
|
||||
</Steps>
|
||||
</Steps>
|
||||
Loading…
Reference in New Issue