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
4 changes: 2 additions & 2 deletions example-cmp/data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ ksp {

android {
namespace = "com.jetbrains.kmpapp.data"
compileSdk = 34
compileSdk = 35

sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
sourceSets["main"].res.srcDirs("src/androidMain/res")
sourceSets["main"].resources.srcDirs("src/commonMain/resources")

defaultConfig {
minSdk = 24
targetSdk = 34
// targetSdk = 34
}
packaging {
resources {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import org.koin.core.annotation.Single

@Module
@ComponentScan("com.jetbrains.kmpapp.data")
//TODO use @Configuration once KSP is fixed - else use KSP 2.1.20 - 1.0.28
class DataModule {

@Single
Expand Down
10 changes: 5 additions & 5 deletions example-cmp/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
kotlin = "2.2.20"
agp = "8.6.1"
kotlin = "2.2.21"
agp = "8.13.0"
androidx-activityCompose = "1.10.1"
androidx-ui-tooling = "1.8.2"
compose-plugin = "1.9.1"
Expand All @@ -12,9 +12,9 @@ lifecycleCompose = "2.9.5"
coil = "3.3.0"

koin = "4.1.1"
koin-annotations = "2.3.0"
kotzilla = "1.2.3"
ksp = "2.2.20-2.0.4"
koin-annotations = "2.3.1"
kotzilla = "1.3.0"
ksp = "2.3.2"

[libraries]
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" }
Expand Down
2 changes: 1 addition & 1 deletion example-cmp/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.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
10 changes: 5 additions & 5 deletions examples/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
# /!\ Koin in gradle.properties /!\

# Core
kotlin = "2.2.20"
kotlin = "2.2.21"
koin = "4.1.1"
koinAnnotations = "2.3.0"
ksp = "2.2.20-2.0.4"
koinAnnotations = "2.3.1"
ksp = "2.3.2"
junit = "4.13.2"
# Android
agp = "8.3.2"
agp = "8.13.0"
androidCompat = "1.7.1"
ktor = "3.1.3"
ktor = "3.3.2"

[libraries]
koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" }
Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
Expand Down
2 changes: 1 addition & 1 deletion projects/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ org.gradle.parallel=true
#Kotlin
kotlin.code.style=official
#Koin
koinAnnotationsVersion=2.3.0
koinAnnotationsVersion=2.3.1
#Android
android.useAndroidX=true
androidMinSDK=14
Expand Down
2 changes: 1 addition & 1 deletion projects/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Core
kotlin = "2.2.20"
koin = "4.1.0"
ksp = "2.2.20-2.0.4"
ksp = "2.3.2"
publish = "2.0.0"
dokka = "1.9.10"
nmcp = "1.0.1"
Expand Down
Loading