summaryrefslogtreecommitdiff
path: root/build/android/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build/android/app/build.gradle')
-rw-r--r--build/android/app/build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/build/android/app/build.gradle b/build/android/app/build.gradle
index 8e87424b5..2c0a02b7f 100644
--- a/build/android/app/build.gradle
+++ b/build/android/app/build.gradle
@@ -11,8 +11,11 @@ android {
versionCode project.versionCode
}
+ // load properties
Properties props = new Properties()
- props.load(new FileInputStream(file('../local.properties')))
+ def propfile = file('../local.properties')
+ if (propfile.exists())
+ props.load(new FileInputStream(propfile))
if (props.getProperty('keystore') != null) {
signingConfigs {