aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle
index c3ed648..0000568 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -8,7 +8,7 @@ def privateProperties = new Properties()
def conf = project.file("private.properties")
if (conf.exists()) privateProperties.load(conf.newDataInputStream())
-if (privateProperties['fabric.key'] != null) {
+if (privateProperties['fabric.key'] != null || System.getenv("FABRIC_KEY") != null) {
apply plugin: 'io.fabric'
}