From ff64866a2fd9723ab5c726d3e99b69a8f0f1fe43 Mon Sep 17 00:00:00 2001 From: fredboy Date: Wed, 17 Apr 2024 03:31:07 +0700 Subject: [PATCH] Fix build --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index a67d071..c3d555c 100644 --- a/build.gradle +++ b/build.gradle @@ -56,6 +56,10 @@ project(":android") { natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64" + + configurations.implementation { + exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8' + } } } @@ -67,7 +71,7 @@ project(":core") { api "com.google.guava:guava:$guavaVersion-android" api 'com.google.dagger:dagger:2.40.1' implementation 'org.jetbrains:annotations:23.1.0' - implementation "org.jetbrains.kotlin:kotlin-stdlib" + implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.23" annotationProcessor 'com.google.dagger:dagger-compiler:2.40.1' } } \ No newline at end of file -- 2.29.2