25 lines
392 B
Markdown
25 lines
392 B
Markdown
# Metatron-Drive
|
|
|
|
Flutter mobile frontend for the private Metatron-Drive file workspace.
|
|
|
|
## Run
|
|
|
|
```bash
|
|
flutter pub get
|
|
flutter run
|
|
```
|
|
|
|
The production API base URL is configured in `lib/core/app_config.dart`.
|
|
|
|
## Build Android APK
|
|
|
|
```bash
|
|
flutter build apk --release --split-per-abi
|
|
```
|
|
|
|
The arm64 APK is generated at:
|
|
|
|
```text
|
|
build/app/outputs/flutter-apk/app-arm64-v8a-release.apk
|
|
```
|