Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/kotlin/co/touchlab/kampkit/android/MainApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import android.util.Log
import co.touchlab.kampkit.AppInfo
import co.touchlab.kampkit.initKoin
import co.touchlab.kampkit.models.BreedViewModel
import org.koin.androidx.viewmodel.dsl.viewModel
import org.koin.core.module.dsl.viewModel
import org.koin.core.parameter.parametersOf
import org.koin.dsl.module

Expand Down
23 changes: 11 additions & 12 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,22 @@ targetSdk = "35"
compileSdk = "35"

# Dependencies
kotlin = "2.0.21"
android-gradle-plugin = "8.5.2"
kotlin = "2.1.10"
android-gradle-plugin = "8.9.0"
ktlint-gradle = "12.1.1"
compose = "1.7.5"
android-desugaring = "2.1.3"
compose = "1.7.8"
android-desugaring = "2.1.5"
androidx-core = "1.15.0"
androidx-test-junit = "1.2.1"
androidx-activity-compose = "1.9.3"
androidx-activity-compose = "1.10.1"
androidx-lifecycle = "2.8.7"
junit = "4.13.2"
coroutines = "1.9.0"
coroutines = "1.10.1"
kotlinx-datetime = "0.6.1"
ktor = "3.0.1"
ktor = "3.0.3"
robolectric = "4.13"
kermit = "2.0.4"
skie = "0.9.3"
koin = "3.5.3"
kermit = "2.0.5"
skie = "0.10.1"
koin = "4.0.2"
multiplatformSettings = "1.2.0"
turbine = "1.2.0"
sqlDelight = "2.0.2"
Expand All @@ -46,7 +45,7 @@ coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", ve
koin-android = { module = "io.insert-koin:koin-android", version.ref = "koin" }
koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" }
koin-test = { module = "io.insert-koin:koin-test", version.ref = "koin" }

koin-view-model = { module = "io.insert-koin:koin-core-viewmodel", version.ref = "koin" }
kotlinx-dateTime = { module = "org.jetbrains.kotlinx:kotlinx-datetime", version.ref = "kotlinx-datetime" }

ktor-client-core = { module = "io.ktor:ktor-client-core", version.ref = "ktor" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
1 change: 1 addition & 0 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ kotlin {

commonMain.dependencies {
implementation(libs.koin.core)
implementation(libs.koin.view.model)
implementation(libs.coroutines.core)
implementation(libs.sqlDelight.coroutinesExt)
implementation(libs.bundles.ktor.common)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@ import androidx.test.ext.junit.runners.AndroidJUnit4
import co.touchlab.kermit.Logger
import kotlin.test.AfterTest
import kotlin.test.Test
import org.junit.experimental.categories.Category
import org.junit.runner.RunWith
import org.koin.core.context.stopKoin
import org.koin.core.parameter.parametersOf
import org.koin.dsl.module
import org.koin.test.category.CheckModuleTest
import org.koin.test.check.checkModules
import org.robolectric.annotation.Config

@RunWith(AndroidJUnit4::class)
@Category(CheckModuleTest::class)
@Config(sdk = [32])
class KoinTest {

Expand Down
Loading