mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-23 02:01:36 +03:00
11 lines
186 B
Bash
11 lines
186 B
Bash
|
#!/bin/bash -x
|
||
|
|
||
|
# Generate Third-party licenses
|
||
|
pushd android
|
||
|
./gradlew collectLicenses
|
||
|
popd
|
||
|
|
||
|
# Build flutter app
|
||
|
flutter build apk --release --split-per-abi
|
||
|
flutter build apk --release
|