CLOVIS
* What went wrong: Cannot query the value of this provider because it has no value available. The value of this provider is derived from: - task ':app:jvmCopyHierarchicalMultiplatformResources' property 'outputDirectory'
plugins { alias(… Kotlin 2.0.0-RC2 …) alias(… Compose Multiplatform 1.6.10-beta03 …) alias(… Compose Compiler 2.0.0-RC2 …) application } kotlin { jvm { withJava() // !! thrown here !! } sourceSets.commonMain.dependencies { // … } } application { mainClass.set("example.MainKt") }
plugins { java // … } kotlin { jvm() // … }
Zac Sweers
A modern programming language that makes developers happier.