fix order

This commit is contained in:
Hiddify
2023-08-22 09:01:36 +00:00
parent bfc026900b
commit fee4824443
2 changed files with 7 additions and 7 deletions

View File

@@ -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