aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuutaW <17158086+Trumeet@users.noreply.github.com>2019-03-02 22:21:53 -0800
committerYuutaW <17158086+Trumeet@users.noreply.github.com>2019-03-02 22:21:53 -0800
commitcb2155a2098e5922f1b6acb9f613e6cb1118c1fb (patch)
treeebdb466bbc4c4ce575c55a115dd7233a989b2424
parent7582edd0af86772e98172d1aee23eca3ae85110d (diff)
downloadWorkMode-cb2155a2098e5922f1b6acb9f613e6cb1118c1fb.tar
WorkMode-cb2155a2098e5922f1b6acb9f613e6cb1118c1fb.tar.gz
WorkMode-cb2155a2098e5922f1b6acb9f613e6cb1118c1fb.tar.bz2
WorkMode-cb2155a2098e5922f1b6acb9f613e6cb1118c1fb.zip
fix(app): load fabric plugin for CI builds
Signed-off-by: YuutaW <17158086+Trumeet@users.noreply.github.com>
-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'
}