Skip to content

Commit

Permalink
bump versions, used koin bomb
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudoankit committed Mar 7, 2024
1 parent da6eabe commit 839a69d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions buildSrc/src/main/java/plugin/base/CorePlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ open class CorePlugin : Plugin<Project> {
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
isCoreLibraryDesugaringEnabled = true
// isCoreLibraryDesugaringEnabled = true
}

composeOptions {
Expand Down Expand Up @@ -79,13 +79,14 @@ open class CorePlugin : Plugin<Project> {
}

project.dependencies {
implementation(platform("io.insert-koin:koin-bom:3.5.3"))
implementation(project.libs.koin.core)
implementation(project.libs.koin.android)
implementation(project.libs.kotlin.collections.immutable)
implementation(project.libs.kotlin.serialization.json)
implementation(platform(project.libs.compose.bom))
implementation(project.libs.compose.runtime)
add("coreLibraryDesugaring", "com.android.tools:desugar_jdk_libs:1.1.5")
// add("coreLibraryDesugaring", "com.android.tools:desugar_jdk_libs:1.1.5")
}
}
}
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[versions]
kotlin = "1.8.10"
kotlin = "1.9.22"
kotlin-coroutines = "1.6.4"
ktor = "2.3.5"
kotest = "5.7.2"
# https://developer.android.com/jetpack/androidx/releases/compose-kotlin
compose-compiler = "1.4.3" # It's used! Use compatible with Kotlin one
compose-compiler = "1.5.8" # It's used! Use compatible with Kotlin one
glance = "1.0.0-alpha05"
room = "2.4.2"
detekt = "1.23.1" # https://detekt.dev/docs/gettingstarted/gradle/
Expand Down Expand Up @@ -36,7 +36,7 @@ kotlin-coroutines-googleplay-temp = { module = "org.jetbrains.kotlinx:kotlinx-co
kotlin-collections-immutable = { module = "org.jetbrains.kotlinx:kotlinx-collections-immutable", version = "0.3.5" }
kotlin-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.4.1" }
kotlin-serialization-plugin = { module = "org.jetbrains.kotlin:kotlin-serialization", version.ref = "kotlin" }
ksp-gradle-plugin = { module = "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin", version = "1.8.10-1.0.9" }
ksp-gradle-plugin = { module = "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin", version = "1.9.22-1.0.16" }

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

# Koin
koin-core = { module = "io.insert-koin:koin-core", version = "3.2.2" }
koin-android = { module = "io.insert-koin:koin-android", version = "3.2.2" }
koin-compose = { module = "io.insert-koin:koin-androidx-compose", version = "3.2.1" }
koin-core = { module = "io.insert-koin:koin-core" }
koin-android = { module = "io.insert-koin:koin-android" }
koin-compose = { module = "io.insert-koin:koin-androidx-compose" }

# Glance
glance = { module = "androidx.glance:glance", version.ref = "glance" }
Expand Down

0 comments on commit 839a69d

Please sign in to comment.