|
|
@@ -45,10 +45,23 @@ android {
|
|
|
versionName flutterVersionName
|
|
|
}
|
|
|
|
|
|
+ signingConfigs {
|
|
|
+ release {
|
|
|
+ keyAlias 'zouma'
|
|
|
+ keyPassword '3edc#EDC'
|
|
|
+ storeFile file('release.jks')
|
|
|
+ storePassword '3edc#EDC'
|
|
|
+ }
|
|
|
+ debug {
|
|
|
+ storeFile file('debug.jks')
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
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
|
|
|
+ }
|
|
|
+ debug {
|
|
|
signingConfig signingConfigs.debug
|
|
|
}
|
|
|
}
|