[docs] Update guide to build mobile app

This commit is contained in:
Neeraj Gupta 2024-03-13 10:42:51 +05:30 committed by Neeraj Gupta
parent 0c1c0ad400
commit f7077c2b11

View file

@ -24,9 +24,14 @@ As a short summary, you can install Flutter and build the Photos app this way:
cd ente/mobile
git submodule update --init --recursive
flutter pub get
# Android
flutter run --dart-define=endpoint=http://localhost:8080 --flavor independent --debug -t lib/main.dart
# iOS
flutter run --dart-define=endpoint=http://localhost:8080
```
Or for the auth app:
```sh
@ -34,4 +39,16 @@ cd ente/auth
git submodule update --init --recursive
flutter pub get
flutter run --dart-define=endpoint=http://localhost:8080
# Android
flutter run --dart-define=endpoint=http://localhost:8080 --flavor independent --debug -t lib/main.dart
# iOS
flutter run --dart-define=endpoint=http://localhost:8080
```
## How to build non-debug builds
For building APK, [setup your
keystore](https://docs.flutter.dev/deployment/android#create-an-upload-keystore)
and run
```sh
flutter build apk --release --flavor independent -t lib/main.dart
```