Reword building from source section of README

This commit is contained in:
Brandon Presley 2022-09-03 18:52:11 +12:00
parent f5e7d51838
commit fcf8748b70
1 changed files with 8 additions and 1 deletions

View File

@ -39,7 +39,14 @@ cd android
./gradlew assembleRelease
```
The apk file can be found at `./app/build/outputs/apk/release/app-release.apk`
The apk file can be found at `android/app/build/outputs/apk/release/app-*-release.apk`
The APKs are separated by architecture, for example we have:
- `app-arm64-v8a-release.apk`
- `app-armeabi-v7a-release.apk`
- `app-x86_64-release.apk`
- `app-x86-release.apk`
Your phone is probably `app-arm64-v8a-release.apk`.
# Running in Development