9 lines
217 B
Bash
Executable file
9 lines
217 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
cd ../../;
|
|
flutter clean && \
|
|
flutter pub get &&
|
|
flutter packages pub run build_runner build --delete-conflicting-outputs;
|
|
|
|
flutter build apk --release;
|
|
flutter build apk --split-per-abi --release;
|