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 }}
|
ANDROID_SIGNING_KEY: ${{ secrets.ANDROID_SIGNING_KEY }}
|
||||||
run: |
|
run: |
|
||||||
cd android
|
cd android
|
||||||
|
pwd
|
||||||
touch signing.properties
|
touch signing.properties
|
||||||
echo $ANDROID_SIGNING_KEY | base64 -d > release.keystore
|
echo $ANDROID_SIGNING_KEY | base64 -d > release.keystore
|
||||||
echo "keystore.path=release.keystore" > release.properties
|
echo "keystore.path=release.keystore" > release.properties
|
||||||
|
|||||||
@@ -67,13 +67,7 @@ android {
|
|||||||
universalApk true
|
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 {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
keyAlias keystoreProperties['key.alias']
|
keyAlias keystoreProperties['key.alias']
|
||||||
@@ -82,6 +76,11 @@ android {
|
|||||||
storePassword keystoreProperties['keystore.password']
|
storePassword keystoreProperties['keystore.password']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
signingConfig signingConfigs.release
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
buildFeatures {
|
buildFeatures {
|
||||||
viewBinding true
|
viewBinding true
|
||||||
|
|||||||
Reference in New Issue
Block a user