aboutsummaryrefslogtreecommitdiffstats
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, 8 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle
index c8100f59..530700ca 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,4 +1,6 @@
apply plugin: 'com.android.application'
+apply plugin: 'kotlin-android'
+apply plugin: 'kotlin-kapt'
apply plugin: 'me.tatarka.retrolambda'
apply plugin: 'io.fabric'
@@ -53,6 +55,8 @@ android {
}
dependencies {
+ compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
+
compile 'com.android.support:support-v4:25.+'
compile 'com.android.support:support-v13:25.+'
// volley
@@ -71,7 +75,7 @@ dependencies {
// twitter-text
compile 'com.twitter:twitter-text:1.14.7'
- annotationProcessor "com.github.gfx.android.orma:orma-processor:4.2.5"
+ kapt "com.github.gfx.android.orma:orma-processor:4.2.5"
compile "com.github.gfx.android.orma:orma:4.2.5"
// Fabric
@@ -80,8 +84,10 @@ dependencies {
}
// LeakCanary
-
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.4'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
release2Compile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
+}
+repositories {
+ mavenCentral()
} \ No newline at end of file