From fcf8748b70a1714b5d9ffe6274cab742e15a0dd8 Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Sat, 3 Sep 2022 18:52:11 +1200 Subject: [PATCH] Reword building from source section of README --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 13a0443..5292a4d 100644 --- a/README.md +++ b/README.md @@ -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