fix order
This commit is contained in:
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
@@ -135,6 +135,7 @@ jobs:
|
||||
ANDROID_SIGNING_KEY: ${{ secrets.ANDROID_SIGNING_KEY }}
|
||||
run: |
|
||||
cd android
|
||||
pwd
|
||||
touch signing.properties
|
||||
echo $ANDROID_SIGNING_KEY | base64 -d > release.keystore
|
||||
echo "keystore.path=release.keystore" > release.properties
|
||||
|
||||
@@ -67,13 +67,7 @@ android {
|
||||
universalApk true
|
||||
}
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
// TODO: Add your own signing config for the release build.
|
||||
// Signing with the debug keys for now, so `flutter run --release` works.
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
release {
|
||||
keyAlias keystoreProperties['key.alias']
|
||||
@@ -82,6 +76,11 @@ android {
|
||||
storePassword keystoreProperties['keystore.password']
|
||||
}
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
}
|
||||
|
||||
buildFeatures {
|
||||
viewBinding true
|
||||
|
||||
Reference in New Issue
Block a user