You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When applying Gradle plugin in MPP, following message appears:
Single JVM target not found in a multiplatform project
It's because multiplatform targets are not available right after applying Kotlin multiplatform plugin.
This may be fixed by running addDependenciesIfNeeded() after all configurations are done and targets are available.
The text was updated successfully, but these errors were encountered:
//Applying it after kotlin extension to ensure that JVM target is loaded//because of https://github.com/Kotlin/kotlin-jupyter/issues/255
plugins.apply(org.jetbrains.kotlinx.jupyter.api.plugin.ApiGradlePlugin::class)
When applying Gradle plugin in MPP, following message appears:
It's because multiplatform targets are not available right after applying Kotlin multiplatform plugin.
This may be fixed by running
addDependenciesIfNeeded()
after all configurations are done and targets are available.The text was updated successfully, but these errors were encountered: