diff options
author | Allan Wang <me@allanwang.ca> | 2017-06-03 21:34:17 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-06-03 21:34:17 -0700 |
commit | 610df8c6d772324095b1c3d2cc17f9c243be6c06 (patch) | |
tree | 3d669f6bdd343ab9db8cbc9910e933e23b381fd2 /build.gradle | |
parent | 8ec65f55f85c730e97d5521c1443819435b98208 (diff) | |
download | frost-610df8c6d772324095b1c3d2cc17f9c243be6c06.tar.gz frost-610df8c6d772324095b1c3d2cc17f9c243be6c06.tar.bz2 frost-610df8c6d772324095b1c3d2cc17f9c243be6c06.zip |
test crashlytics
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 6fafc759..1ee01293 100644 --- a/build.gradle +++ b/build.gradle @@ -4,12 +4,12 @@ buildscript { ext.kotlin_version = '1.1.2-4' repositories { jcenter() + maven { url 'https://maven.fabric.io/public' } } dependencies { classpath 'com.android.tools.build:gradle:2.3.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - // NOTE: Do not place your application dependencies here; they belong - // in the individual module build.gradle files + classpath 'io.fabric.tools:gradle:1.+' } } @@ -18,6 +18,7 @@ allprojects { jcenter() mavenCentral() maven { url "https://jitpack.io" } + maven { url 'https://maven.fabric.io/public' } } } |