-
Notifications
You must be signed in to change notification settings - Fork 51
Make build work again with Android Studio Meerkat #168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
Release 0.19.0
Release 0.19.1
sample/ios-app/.DS_Store
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this file should be not commited
|
||
// Configure Java toolchain to use Java 17 | ||
plugins.withId("org.jetbrains.kotlin.multiplatform") { | ||
extensions.configure<org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension> { | ||
jvmToolchain(17) | ||
} | ||
} | ||
|
||
// For Android projects | ||
plugins.withId("com.android.application") { | ||
extensions.configure<com.android.build.gradle.BaseExtension> { | ||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
} | ||
} | ||
|
||
plugins.withId("com.android.library") { | ||
extensions.configure<com.android.build.gradle.LibraryExtension> { | ||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of this change we need just update moko-gradle-plugin dependency.
mokoGradlePlugin = { module = "dev.icerock.moko:moko-gradle-plugin", version = "0.2.0" } |
this line should be changed to latest release of https://github.com/icerockdev/moko-gradle-plugin/releases
No description provided.