aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 80895f6e..4efb8529 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -2,15 +2,6 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'io.fabric'
-def FABRIC_API_KEY = System.env.FABRIC_API_KEY
-if (FABRIC_API_KEY == null) {
- def fabricProps = new Properties()
- file("../fabric.properties").withInputStream {
- stream -> fabricProps.load(stream)
- }
- FABRIC_API_KEY = fabricProps.getProperty('FABRIC_API_KEY', 'empty')
-}
-println 'Fabric ' + FABRIC_API_KEY
android {
compileSdkVersion Integer.parseInt(project.TARGET_SDK)
buildToolsVersion project.BUILD_TOOLS
@@ -23,7 +14,6 @@ android {
versionName project.VERSION_NAME
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- manifestPlaceholders = [fabricApiKey: FABRIC_API_KEY]
}
applicationVariants.all { variant ->