File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1010
1111# Define a job to be invoked later in a workflow.
1212# See: https://circleci.com/docs/configuration-reference/#jobs
13+ # ref: https://circleci.com/docs/guides/execution-managed/using-macos/
1314jobs :
1415 build-android :
1516 executor : java17
2930
3031 build-ios :
3132 macos :
32- xcode : 15.0 .0
33- resource_class : medium
33+ xcode : 16.4 .0
34+ resource_class : macos.m1. medium.gen1
3435 steps :
3536 - checkout
3637 - run :
Original file line number Diff line number Diff line change @@ -4,4 +4,10 @@ plugins {
44
55repositories {
66 gradlePluginPortal() // To use 'maven-publish' and 'signing' plugins in our own plugin
7+ }
8+
9+ java {
10+ toolchain {
11+ languageVersion.set(JavaLanguageVersion .of(8 ))
12+ }
713}
Original file line number Diff line number Diff line change 11import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
2+ import org.jetbrains.kotlin.gradle.dsl.JvmDefaultMode
23
34plugins {
45 alias(libs.plugins.kotlinMultiplatform)
@@ -21,6 +22,7 @@ kotlin {
2122 androidTarget {
2223 compilerOptions {
2324 jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_1_8 )
25+ jvmDefault = JvmDefaultMode .DISABLE
2426 }
2527 publishLibraryVariants(" release" , " debug" )
2628 }
You can’t perform that action at this time.
0 commit comments