AndroidSetup.md
If you'd like to contribute to the Android project, but do not currently have a development environment setup, follow the instructions in this guide.
Install Android Studio with the default options if you do not already have it.
Source/Android project in Android Studio, let any background tasks finish, and Android Studio will automatically download the required SDK components and tooling.:app module, then choose Build > Generate App Bundles or APKs > Generate APKs to produce the APK in Source/Android/app/build/outputs/apk.The project maintains a custom IntelliJ/Android Studio style file to keep Java and Kotlin formatting consistent.
Source/Android/code-style-java.xml from the repository.Before committing or submitting a pull request, reformat any Java or Kotlin files you modified:
Ctrl+Alt+L/⌥⌘L on macOS) with the Dolphin code style selected.For command-line users, any task may be executed with cd Source/Android followed by gradlew <task-name>. In particular, gradlew assemble builds debug and release versions of the application (which are placed in Source/Android/app/build/outputs/apk).