Skip to content

Commit 839a69d

Browse files
committed
bump versions, used koin bomb
1 parent da6eabe commit 839a69d

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

buildSrc/src/main/java/plugin/base/CorePlugin.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ open class CorePlugin : Plugin<Project> {
3939
compileOptions {
4040
sourceCompatibility = JavaVersion.VERSION_11
4141
targetCompatibility = JavaVersion.VERSION_11
42-
isCoreLibraryDesugaringEnabled = true
42+
// isCoreLibraryDesugaringEnabled = true
4343
}
4444

4545
composeOptions {
@@ -79,13 +79,14 @@ open class CorePlugin : Plugin<Project> {
7979
}
8080

8181
project.dependencies {
82+
implementation(platform("io.insert-koin:koin-bom:3.5.3"))
8283
implementation(project.libs.koin.core)
8384
implementation(project.libs.koin.android)
8485
implementation(project.libs.kotlin.collections.immutable)
8586
implementation(project.libs.kotlin.serialization.json)
8687
implementation(platform(project.libs.compose.bom))
8788
implementation(project.libs.compose.runtime)
88-
add("coreLibraryDesugaring", "com.android.tools:desugar_jdk_libs:1.1.5")
89+
// add("coreLibraryDesugaring", "com.android.tools:desugar_jdk_libs:1.1.5")
8990
}
9091
}
9192
}

gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[versions]
2-
kotlin = "1.8.10"
2+
kotlin = "1.9.22"
33
kotlin-coroutines = "1.6.4"
44
ktor = "2.3.5"
55
kotest = "5.7.2"
66
# https://developer.android.com/jetpack/androidx/releases/compose-kotlin
7-
compose-compiler = "1.4.3" # It's used! Use compatible with Kotlin one
7+
compose-compiler = "1.5.8" # It's used! Use compatible with Kotlin one
88
glance = "1.0.0-alpha05"
99
room = "2.4.2"
1010
detekt = "1.23.1" # https://detekt.dev/docs/gettingstarted/gradle/
@@ -36,7 +36,7 @@ kotlin-coroutines-googleplay-temp = { module = "org.jetbrains.kotlinx:kotlinx-co
3636
kotlin-collections-immutable = { module = "org.jetbrains.kotlinx:kotlinx-collections-immutable", version = "0.3.5" }
3737
kotlin-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.4.1" }
3838
kotlin-serialization-plugin = { module = "org.jetbrains.kotlin:kotlin-serialization", version.ref = "kotlin" }
39-
ksp-gradle-plugin = { module = "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin", version = "1.8.10-1.0.9" }
39+
ksp-gradle-plugin = { module = "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin", version = "1.9.22-1.0.16" }
4040

4141
# Ktor
4242
ktor-client-okhttp = { module = "io.ktor:ktor-client-okhttp", version.ref = "ktor" }
@@ -79,9 +79,9 @@ compose-placeholder = { module = "com.google.accompanist:accompanist-placeholder
7979
compose-orbit-mvi = { module = "org.orbit-mvi:orbit-compose", version = "4.5.0" }
8080

8181
# Koin
82-
koin-core = { module = "io.insert-koin:koin-core", version = "3.2.2" }
83-
koin-android = { module = "io.insert-koin:koin-android", version = "3.2.2" }
84-
koin-compose = { module = "io.insert-koin:koin-androidx-compose", version = "3.2.1" }
82+
koin-core = { module = "io.insert-koin:koin-core" }
83+
koin-android = { module = "io.insert-koin:koin-android" }
84+
koin-compose = { module = "io.insert-koin:koin-androidx-compose" }
8585

8686
# Glance
8787
glance = { module = "androidx.glance:glance", version.ref = "glance" }

0 commit comments

Comments
 (0)