Skip to content

Commit

Permalink
1.9.20-Beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
russhwolf committed Oct 5, 2023
1 parent b6eccce commit 1d6ec57
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

plugins {
kotlin("jvm") version "1.9.10"
kotlin("jvm") version "1.9.20-Beta2"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ object Versions {
const val coroutines = "1.7.3"
const val junit = "4.13.2"
const val robolectric = "4.10.3"
const val serializationPlugin = "1.9.10"
const val serializationPlugin = "1.9.20-Beta2"
const val serializationRuntime = "1.6.0"
const val turbine = "1.0.0"
}
8 changes: 7 additions & 1 deletion sample/app-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@
* limitations under the License.
*/

buildscript {
repositories {
maven(url = "https://androidx.dev/storage/compose-compiler/repository/")
}
}

plugins {
id("com.android.application")
kotlin("android")
Expand Down Expand Up @@ -51,7 +57,7 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion = "1.5.3"
kotlinCompilerExtensionVersion = "1.5.4-dev-k1.9.20-Beta2-ac5f960bdaf"
}
}

Expand Down
10 changes: 10 additions & 0 deletions sample/app-desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat
* limitations under the License.
*/

buildscript {
repositories {
maven(url = "https://androidx.dev/storage/compose-compiler/repository/")
}
}

plugins {
kotlin("jvm")
id("org.jetbrains.compose") version "1.5.2"
Expand All @@ -29,6 +35,10 @@ dependencies {
testImplementation(compose.desktop.uiTestJUnit4)
}

compose {
kotlinCompilerPlugin.set("1.5.4-dev-k1.9.20-Beta2-ac5f960bdaf")
}

compose.desktop {
application {
mainClass = "com.russhwolf.settings.example.jvm.MainKt"
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
*/

plugins {
kotlin("multiplatform") version "1.9.10" apply false
kotlin("android") version "1.9.10" apply false
kotlin("multiplatform") version "1.9.20-Beta2" apply false
kotlin("android") version "1.9.20-Beta2" apply false
id("com.android.library") version "8.1.2" apply false
id("com.android.application") version "8.1.2" apply false
}
Expand Down

0 comments on commit 1d6ec57

Please sign in to comment.