From a9d0e4485d41eecdc2c4b231694d81a729368dd7 Mon Sep 17 00:00:00 2001 From: mandreshope Date: Thu, 31 Jul 2025 04:49:09 +0300 Subject: [PATCH] chore: Documents app build script usage Adds a new section to the README detailing the usage of the `build_app.sh` script. This provides clear instructions for building the Android APK, iOS IPA, or both, enhancing developer onboarding for app compilation. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index fcf4c6e..7becf5b 100644 --- a/README.md +++ b/README.md @@ -47,3 +47,14 @@ Run this script in project root to create apk ```batch Usage: ./scripts/version_and_changelog.sh ``` + +## Build apk + +Run this script in project root to create apk + +```batch +Usage: ./scripts/build_app.sh [android|ios|both] + android - Build only the Android APK + ios - Build only the iOS IPA (macOS only) + both - Build both Android APK and iOS IPA (macOS only) +```