File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -51,9 +51,9 @@ def propFile = file('../local.properties')
5151if (propFile. canRead()){
5252def Properties props = new Properties ()
5353 props. load(new FileInputStream (propFile))
54- if (props!= null && props. containsKey(' STORE_FILE ' ) && props. containsKey(' key.store.password' ) &&
54+ if (props!= null && props. containsKey(' key.store ' ) && props. containsKey(' key.store.password' ) &&
5555 props. containsKey(' key.alias' )) {
56- android. signingConfigs. release. storeFile = file(props[' STORE_FILE ' ])
56+ android. signingConfigs. release. storeFile = file(props[' key.store ' ])
5757 android. signingConfigs. release. storePassword = props[' key.store.password' ]
5858 android. signingConfigs. release. keyAlias = props[' key.alias' ]
5959 android. signingConfigs. release. keyPassword = props[' key.store.password' ]
You can’t perform that action at this time.
0 commit comments