File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88.buildlog /
99.history
1010.svn /
11+ .key /
1112migrate_working_dir /
1213assets /bibles /.temp /* .ESFM
1314
Original file line number Diff line number Diff line change @@ -22,6 +22,12 @@ if (flutterVersionName == null) {
2222 flutterVersionName = ' 1.0'
2323}
2424
25+ def keystoreProperties = new Properties ()
26+ def keystorePropertiesFile = rootProject. file(' key.properties' )
27+ if (keystorePropertiesFile. exists()) {
28+ keystoreProperties. load(new FileInputStream (keystorePropertiesFile))
29+ }
30+
2531android {
2632 namespace " com.bibleside.bibleside"
2733 compileSdkVersion flutter. compileSdkVersion
@@ -52,9 +58,10 @@ android {
5258
5359 buildTypes {
5460 release {
55- // TODO: Add your own signing config for the release build.
56- // Signing with the debug keys for now, so `flutter run --release` works.
57- signingConfig signingConfigs. debug
61+ keyAlias keystoreProperties[' keyAlias' ]
62+ keyPassword keystoreProperties[' keyPassword' ]
63+ storeFile keystoreProperties[' storeFile' ] ? file(keystoreProperties[' storeFile' ]) : null
64+ storePassword keystoreProperties[' storePassword' ]
5865 }
5966 }
6067
You can’t perform that action at this time.
0 commit comments