Skip to content

Commit

Permalink
Kotlin 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vitoksmile committed Aug 31, 2023
1 parent c631fd8 commit f5ec8b0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

kotlin {
android()
androidTarget()
sourceSets {
val androidMain by getting {
dependencies {
Expand All @@ -30,10 +30,10 @@ android {
versionName = "1.0"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlin {
jvmToolchain(11)
jvmToolchain(17)
}
}
12 changes: 6 additions & 6 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

kotlin {
android()
androidTarget()

iosX64()
iosArm64()
Expand Down Expand Up @@ -36,7 +36,7 @@ kotlin {
implementation(compose.components.resources)

// Fix ios build
implementation("org.jetbrains.kotlinx:atomicfu:0.18.5")
implementation("org.jetbrains.kotlinx:atomicfu:0.21.0")
}
}

Expand All @@ -48,7 +48,7 @@ kotlin {

implementation("androidx.startup:startup-runtime:1.1.1")

implementation("androidx.health.connect:connect-client:1.1.0-alpha02")
implementation("androidx.health.connect:connect-client:1.1.0-alpha03")
}
}

Expand Down Expand Up @@ -76,10 +76,10 @@ android {
targetSdk = (findProperty("android.targetSdk") as String).toInt()
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlin {
jvmToolchain(11)
jvmToolchain(17)
}
}
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ android.minSdk=26
android.suppressUnsupportedCompileSdk=33,34

#Versions
kotlin.version=1.8.20
agp.version=8.0.2
compose.version=1.4.1
kotlin.version=1.9.0
agp.version=8.1.0
compose.version=1.4.3
8 changes: 4 additions & 4 deletions koin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
kotlin {
targetHierarchy.default()

android()
androidTarget()

iosX64()
iosArm64()
Expand Down Expand Up @@ -66,10 +66,10 @@ android {
targetSdk = (findProperty("android.targetSdk") as String).toInt()
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlin {
jvmToolchain(11)
jvmToolchain(17)
}
}

0 comments on commit f5ec8b0

Please sign in to comment.