Skip to content
Snippets Groups Projects

Resolve "Init application"

+ 7
3
@@ -27,10 +27,12 @@ android:build-debug:
- echo keyAlias=$ANDROID_DEBUG_KEY_ALIAS >> android/key.properties
- echo keyPassword=$ANDROID_DEBUG_KEY_PASSWORD >> android/key.properties
# build flutter app
- flutter build apk
- flutter build apk --debug
# prepare artifact
- find . -name "*.apk" # where is my apk?
artifacts:
paths:
- build/app/outputs/apk/release
- build/app/outputs/apk/debug
expire_in: 1 week
interruptible: true
@@ -53,9 +55,11 @@ android:build-release:
- echo keyPassword=$ANDROID_KEY_PASSWORD >> android/key.properties
# build flutter app
- flutter build apk
# prepare artifact
- find . -name "*.apk" # where is my apk?
artifacts:
paths:
- build/app/outputs/apk/release
- build/app/outputs/apk/release
expire_in: 1 week
interruptible: true
Loading