DEADSOFTWARE

Add Kotlin dependencies
authorfred-boy <fredboy@protonmail.com>
Mon, 15 Jun 2020 13:44:49 +0000 (20:44 +0700)
committerfredboy <fredboy@protonmail.com>
Tue, 16 Jun 2020 11:57:48 +0000 (18:57 +0700)
build.gradle
core/build.gradle

index 354fa1e04d05223b3909ec953fb7b86eac26c5d2..ed846ef9ecd276fccf4cd108d0db9ce443052a1d 100644 (file)
@@ -11,6 +11,7 @@ buildscript {
 
     dependencies {
         classpath 'com.android.tools.build:gradle:3.5.0'
+        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72"
     }
 }
 
@@ -71,6 +72,7 @@ project(":core") {
         api "com.google.guava:guava:$guavaVersion-android"
         api 'com.google.dagger:dagger:2.27'
         implementation 'org.jetbrains:annotations:15.0'
+        implementation "org.jetbrains.kotlin:kotlin-stdlib"
         annotationProcessor 'com.google.dagger:dagger-compiler:2.27'
     }
 }
\ No newline at end of file
index 30b4faf6d4f239c7dd76c89e8d9d16dcf5bdae21..f17b1029a7e1f15f5ac5a79a78cfcde1c1986525 100644 (file)
@@ -1,4 +1,5 @@
 plugins {
+    id "org.jetbrains.kotlin.jvm"
     id "java"
     id "idea"
     id "net.ltgt.apt" version "0.21"