Skip to content

Commit

Permalink
Up kotlin to 2.0 RC-3
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-paing committed May 18, 2024
1 parent c048363 commit 6cb733e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
5 changes: 1 addition & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ plugins {
alias(libs.plugins.kotlin.android)
alias(libs.plugins.kotlin.ksp)
alias(libs.plugins.kotlin.pracelize)
alias(libs.plugins.kotlin.compose.compiler)
alias(libs.plugins.dagger.hilt)
alias(libs.plugins.wire)
alias(libs.plugins.android.junit5)
Expand Down Expand Up @@ -103,10 +104,6 @@ android {
}
}

composeOptions {
kotlinCompilerExtensionVersion = "1.5.10"
}

kotlinOptions {
jvmTarget = "17"
}
Expand Down
7 changes: 4 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ firebase-crashlytics-gradle = "2.9.9"
glance = "1.1.0-rc01"
google-services = "4.4.1"
jupiter = "5.10.0"
kotlin = "1.9.22"
kotlinx-coroutine = "1.8.0"
kotlin = "2.0.0-RC3"
kotlinx-coroutine = "1.8.1"
mockk = "1.12.3"
moshi = "1.14.0"
okhttp = "5.0.0-alpha.12"
Expand Down Expand Up @@ -141,8 +141,9 @@ dagger-hilt = { id = "com.google.dagger.hilt.android", version.ref = "dagger" }
firebase-crashlytics = { id = "com.google.firebase.crashlytics", version.ref = "firebase-crashlytics-gradle" }
google-services = { id = "com.google.gms.google-services", version.ref = "google-services" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
kotlin-ksp = { id = "com.google.devtools.ksp", version = "1.9.22-1.0.17" }
kotlin-ksp = { id = "com.google.devtools.ksp", version = "2.0.0-RC3-1.0.20" }
kotlin-pracelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" }
kotlin-compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
roborazzi = { id = "io.github.takahirom.roborazzi", version.ref = "roborazzi" }
wire = { id = "com.squareup.wire", version.ref = "wire" }

Expand Down
5 changes: 1 addition & 4 deletions wear/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.kotlin.ksp)
alias(libs.plugins.kotlin.compose.compiler)
alias(libs.plugins.dagger.hilt)
}

Expand Down Expand Up @@ -72,10 +73,6 @@ android {
}
}

composeOptions {
kotlinCompilerExtensionVersion = "1.5.10"
}

kotlinOptions {
jvmTarget = "17"
}
Expand Down

0 comments on commit 6cb733e

Please sign in to comment.