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.
This commit is contained in:
mandreshope 2025-07-31 04:49:09 +03:00
parent 23dba086f1
commit a9d0e4485d

View File

@ -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)
```