Android app binary requirements:
- APK (AAB not supported)
- Compatible with x86_64 architecture
- Requires Android API level 26 or newer
- Release and Debug builds both supported
Build your app using one of the commands below. Then find the appropriate APK file in the build/outputs/apk/
output directory.
# Release build
./gradlew assembleRelease
# Debug build
./gradlew assembleDebug
If you use Flutter to build your app you can create a debug build using the following command:
# Release build
flutter build apk
# Debug build
flutter build apk --debug
You can then find the built apk in the build/app/outputs/
folder.