Skip to content

Commit 1d4c1af

Browse files
Merge pull request #319 from InsertKoinIO/feat_ksp_2.3.1
[Feat] Update stack to use KSP 2.3.2
2 parents 945e5a4 + baa90a6 commit 1d4c1af

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

example-cmp/data/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ ksp {
7171

7272
android {
7373
namespace = "com.jetbrains.kmpapp.data"
74-
compileSdk = 34
74+
compileSdk = 35
7575

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

8080
defaultConfig {
8181
minSdk = 24
82-
targetSdk = 34
82+
// targetSdk = 34
8383
}
8484
packaging {
8585
resources {

example-cmp/data/src/commonMain/kotlin/com/jetbrains/kmpapp/di/DataModule.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import org.koin.core.annotation.Single
1111

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

1617
@Single

example-cmp/gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
2-
kotlin = "2.2.20"
3-
agp = "8.6.1"
2+
kotlin = "2.2.21"
3+
agp = "8.13.0"
44
androidx-activityCompose = "1.10.1"
55
androidx-ui-tooling = "1.8.2"
66
compose-plugin = "1.9.1"
@@ -12,9 +12,9 @@ lifecycleCompose = "2.9.5"
1212
coil = "3.3.0"
1313

1414
koin = "4.1.1"
15-
koin-annotations = "2.3.0"
16-
kotzilla = "1.2.3"
17-
ksp = "2.2.20-2.0.4"
15+
koin-annotations = "2.3.1"
16+
kotzilla = "1.3.0"
17+
ksp = "2.3.2"
1818

1919
[libraries]
2020
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" }

example-cmp/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

examples/gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
# /!\ Koin in gradle.properties /!\
44

55
# Core
6-
kotlin = "2.2.20"
6+
kotlin = "2.2.21"
77
koin = "4.1.1"
8-
koinAnnotations = "2.3.0"
9-
ksp = "2.2.20-2.0.4"
8+
koinAnnotations = "2.3.1"
9+
ksp = "2.3.2"
1010
junit = "4.13.2"
1111
# Android
12-
agp = "8.3.2"
12+
agp = "8.13.0"
1313
androidCompat = "1.7.1"
14-
ktor = "3.1.3"
14+
ktor = "3.3.2"
1515

1616
[libraries]
1717
koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" }

examples/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
1+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStorePath=wrapper/dists

projects/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ org.gradle.parallel=true
77
#Kotlin
88
kotlin.code.style=official
99
#Koin
10-
koinAnnotationsVersion=2.3.0
10+
koinAnnotationsVersion=2.3.1
1111
#Android
1212
android.useAndroidX=true
1313
androidMinSDK=14

projects/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Core
66
kotlin = "2.2.20"
77
koin = "4.1.0"
8-
ksp = "2.2.20-2.0.4"
8+
ksp = "2.3.2"
99
publish = "2.0.0"
1010
dokka = "1.9.10"
1111
nmcp = "1.0.1"

0 commit comments

Comments
 (0)