File tree Expand file tree Collapse file tree 8 files changed +8
-6
lines changed
build-logic/convention/src/main/kotlin/com/skydoves/landscapist Expand file tree Collapse file tree 8 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ internal fun Project.configureComposeMultiplatform(
3737 kotlinMultiplatformExtension.apply {
3838 androidTarget { publishLibraryVariants(" release" ) }
3939 jvm(" desktop" )
40+ jvmToolchain(11 )
4041
4142 wasmJs {
4243 browser {
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ internal fun Project.configureComposeMultiplatformWasm(
3434 kotlinMultiplatformExtension.apply {
3535 androidTarget { publishLibraryVariants(" release" ) }
3636 jvm(" desktop" )
37+ jvmToolchain(11 )
3738
3839 wasmJs {
3940 browser {
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ baselineProfile {
119119
120120tasks.withType<KotlinJvmCompile >().configureEach {
121121 compilerOptions {
122- jvmTarget.set(JvmTarget .JVM_1_8 )
122+ jvmTarget.set(JvmTarget .JVM_11 )
123123 freeCompilerArgs.addAll(
124124 " -opt-in=coil3.annotation.ExperimentalCoilApi" ,
125125 )
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ androidxMacroBenchmark = "1.4.0-beta01"
1818androidxProfileinstaller = " 1.4.1"
1919androidxUiAutomator = " 2.3.0"
2020kotlinxSerializationJson = " 1.8.1"
21- jetbrains-compose = " 1.7.3 "
21+ jetbrains-compose = " 1.8.0 "
2222glide = " 4.16.0"
2323fresco = " 3.6.0"
2424coil = " 2.7.0"
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ baselineProfile {
9090
9191tasks.withType<KotlinJvmCompile >().configureEach {
9292 compilerOptions {
93- jvmTarget.set(JvmTarget .JVM_1_8 )
93+ jvmTarget.set(JvmTarget .JVM_11 )
9494 freeCompilerArgs.addAll(
9595 " -Xexplicit-api=strict" ,
9696 " -opt-in=kotlin.RequiresOptIn" ,
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ baselineProfile {
8585
8686tasks.withType<KotlinJvmCompile >().configureEach {
8787 compilerOptions {
88- jvmTarget.set(JvmTarget .JVM_1_8 )
88+ jvmTarget.set(JvmTarget .JVM_11 )
8989 freeCompilerArgs.addAll(
9090 " -Xexplicit-api=strict" ,
9191 " -opt-in=kotlin.RequiresOptIn" ,
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ baselineProfile {
9090
9191tasks.withType<KotlinJvmCompile >().configureEach {
9292 compilerOptions {
93- jvmTarget.set(JvmTarget .JVM_1_8 )
93+ jvmTarget.set(JvmTarget .JVM_11 )
9494 freeCompilerArgs.addAll(
9595 " -Xexplicit-api=strict" ,
9696 " -opt-in=kotlin.RequiresOptIn" ,
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ baselineProfile {
8787
8888tasks.withType<KotlinJvmCompile >().configureEach {
8989 compilerOptions {
90- jvmTarget.set(JvmTarget .JVM_1_8 )
90+ jvmTarget.set(JvmTarget .JVM_11 )
9191
9292 }
9393}
You can’t perform that action at this time.
0 commit comments