DEADSOFTWARE

Add Kotlin dependencies
[cavedroid.git] / build.gradle
index 7155a60b2d0d313cb626b3319fc8b5916786cc96..ed846ef9ecd276fccf4cd108d0db9ce443052a1d 100644 (file)
@@ -1,6 +1,5 @@
 buildscript {
 
-
     repositories {
         mavenLocal()
         mavenCentral()
@@ -9,10 +8,10 @@ buildscript {
         jcenter()
         google()
     }
+
     dependencies {
         classpath 'com.android.tools.build:gradle:3.5.0'
-
-
+        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72"
     }
 }
 
@@ -42,7 +41,6 @@ allprojects {
 project(":desktop") {
     apply plugin: "java-library"
 
-
     dependencies {
         implementation project(":core")
         api "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
@@ -69,9 +67,12 @@ project(":android") {
 project(":core") {
     apply plugin: "java-library"
 
-
     dependencies {
         api "com.badlogicgames.gdx:gdx:$gdxVersion"
         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