File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,13 +38,15 @@ android {
3838 ndkVersion = " 25.2.9519653"
3939 signingConfigs {
4040 create(" release" ) {
41- val properties = Properties ().apply {
42- load(File (" signing.properties" ).reader())
41+ if (File (" signing.properties" ).exists()) {
42+ val properties = Properties ().apply {
43+ load(File (" signing.properties" ).reader())
44+ }
45+ storeFile = File (properties.getProperty(" storeFilePath" ))
46+ storePassword = properties.getProperty(" storePassword" )
47+ keyPassword = properties.getProperty(" keyPassword" )
48+ keyAlias = properties.getProperty(" keyAlias" )
4349 }
44- storeFile = File (properties.getProperty(" storeFilePath" ))
45- storePassword = properties.getProperty(" storePassword" )
46- keyPassword = properties.getProperty(" keyPassword" )
47- keyAlias = properties.getProperty(" keyAlias" )
4850 }
4951 }
5052 defaultConfig {
You can’t perform that action at this time.
0 commit comments