Local properties file is optional

pull/194/merge
M66B 4 years ago
parent 428ce5a383
commit 5ff7017b0e

@ -12,6 +12,7 @@ def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(rootProject.file("keystore.properties")))
Properties localProperties = new Properties()
if (rootProject.file("local.properties").exists())
localProperties.load(new FileInputStream(rootProject.file("local.properties")))
android {

Loading…
Cancel
Save