Skip to content

Commit

Permalink
The entire project goes Kotlin 2.0 now.
Browse files Browse the repository at this point in the history
  • Loading branch information
atsushieno committed Jun 1, 2024
1 parent 1e5022e commit 20db482
Show file tree
Hide file tree
Showing 6 changed files with 486 additions and 280 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
alias(libs.plugins.androidLibrary) apply false
alias(libs.plugins.jetbrainsCompose) apply false
alias(libs.plugins.kotlinMultiplatform) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.kotlinJvm) apply false
alias(libs.plugins.dokka) apply false
alias(libs.plugins.gradleJavacppPlatform) apply false
Expand All @@ -12,7 +13,7 @@ plugins {

allprojects {
group = 'dev.atsushieno'
version = '0.8.2'
version = '0.9.0'
}

apply from: "${rootDir}/publish-root.gradle"
Expand Down
23 changes: 12 additions & 11 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ agp = "8.2.2"
android-compileSdk = "34"
android-minSdk = "23"
android-targetSdk = "34"
androidx-activityCompose = "1.8.2"
androidx-appcompat = "1.6.1"
androidx-core-ktx = "1.12.0"
androidx-activityCompose = "1.9.0"
androidx-appcompat = "1.7.0"
androidx-core-ktx = "1.13.1"
androidx-espresso-core = "3.5.1"
androidx-test-junit = "1.1.5"
compose = "1.6.5"
compose-plugin = "1.6.0"
compose = "1.6.7"
compose-plugin = "1.6.10"
junit = "4.13.2"
kotlin = "1.9.22"
kotlin = "2.0.0"
dokka = "1.9.10"
binary-compatibility-validator = "0.14.0"
junit-jupiter-api = "5.9.1"
junit-jupiter-api = "5.10.0"
kotlin-test-junit = "1.9.0"
jzz = "1.8.1"

kotlinx-coroutines-core = "1.8.0"
kotlinx-datetime = "0.5.0"
kotlinxSerialization = "1.6.2"
ktor-io = "2.3.7"
kotlinx-coroutines-core = "1.9.0-RC"
kotlinx-datetime = "0.6.0"
kotlinxSerialization = "1.7.0-RC"
ktor-io = "2.3.11"

mpfilepicker = "3.1.0"
gradle-javacpp = "1.5.10"
Expand Down Expand Up @@ -65,6 +65,7 @@ androidApplication = { id = "com.android.application", version.ref = "agp" }
androidLibrary = { id = "com.android.library", version.ref = "agp" }
jetbrainsCompose = { id = "org.jetbrains.compose", version.ref = "compose-plugin" }
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
kotlinJvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }
gradleJavacppBuild = { id = "org.bytedeco.gradle-javacpp-build", version.ref = "gradle-javacpp" }
Expand Down
Loading

0 comments on commit 20db482

Please sign in to comment.