From 40b368bc7e933e1690bfeca5961ac8efda6b9cc4 Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Tue, 4 Nov 2025 11:03:44 +0100 Subject: [PATCH] Add Android build script (#1332) --- apps/mobile-app/android/build.sh | 5 +++++ docs/misc/release/publish-new-release/index.md | 2 +- docs/mobile-apps/android/build-from-source.md | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100755 apps/mobile-app/android/build.sh diff --git a/apps/mobile-app/android/build.sh b/apps/mobile-app/android/build.sh new file mode 100755 index 000000000..ccbf14282 --- /dev/null +++ b/apps/mobile-app/android/build.sh @@ -0,0 +1,5 @@ +# Build Android app in release mode +./gradlew bundleRelease + +# Open directory that should contain the .aab file if build was successful +open app/build/outputs/bundle/release diff --git a/docs/misc/release/publish-new-release/index.md b/docs/misc/release/publish-new-release/index.md index 5efbb6491..defbd5e2a 100644 --- a/docs/misc/release/publish-new-release/index.md +++ b/docs/misc/release/publish-new-release/index.md @@ -108,7 +108,7 @@ The GitHub Actions workflow `Browser Extension Build` will build the browser ext ```bash ./gradlew app:bundleRelease ``` - 2. The resulting .aapb file will be available in the following location. + 2. The resulting .aab file will be available in the following location. ```bash apps/mobile-ap/android/app/build/outputs/bundle/release ``` diff --git a/docs/mobile-apps/android/build-from-source.md b/docs/mobile-apps/android/build-from-source.md index b4a63cdd9..7fb014c62 100644 --- a/docs/mobile-apps/android/build-from-source.md +++ b/docs/mobile-apps/android/build-from-source.md @@ -74,7 +74,7 @@ cd android ./gradlew app:bundleRelease ``` -The resulting .aapb file will be available in: +The resulting .aab file will be available in: ```bash app/build/outputs/bundle/release