Merge pull request #1081 from JohnBetaro/main

Small optimization
This commit is contained in:
Imran Remtulla
2023-11-18 14:41:23 -05:00
committed by GitHub
2 changed files with 2 additions and 11 deletions

View File

@@ -21,7 +21,6 @@ jobs:
- name: Build APKs
run: |
sed -i 's/signingConfig signingConfigs.release//g' android/app/build.gradle
flutter build apk && flutter build apk --split-per-abi
rm ./build/app/outputs/flutter-apk/*.sha1
ls -l ./build/app/outputs/flutter-apk/

View File

@@ -57,18 +57,10 @@ android {
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
}