modified: .circleci/config.yml

This commit is contained in:
stonegate 2020-05-19 15:14:44 +08:00
parent 49186c7ffa
commit b1a686987d
2 changed files with 4 additions and 1 deletions

View File

@ -21,5 +21,8 @@ jobs:
- run:
name: Build the Android version
command: flutter build appbundle --no-shrink
- run:
name: Build the Android apk
command: flutter build apk --split-per-abi --no-shrink
- store_artifacts:
path: build/app/outputs/

View File

@ -56,7 +56,7 @@ android {
signingConfigs {
release {
storeFile file("keystore.jks")
storeFile file(System.getenv("KEYSTORE") ?:"keystore.jks")
storePassword System.getenv("KEYSTORE_PASSWORD")
keyAlias System.getenv("KEY_ALIAS")
keyPassword System.getenv("KEY_PASSWORD")