Norbi
05/19/2022, 8:06 AMCaused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find org.jetbrains.compose.compiler:compiler:1.2.0-alpha01-dev686.
or some other error 😞
My goal is to use Kotlin 1.6.21...
Thanks.John O'Reilly
05/19/2022, 8:12 AMmaven("<https://maven.pkg.jetbrains.space/public/p/compose/dev>")
Norbi
05/19/2022, 12:34 PMcompose {
desktop {
application {
...
But I don't see any property to set the compose compiler version...mcpiroman
05/19/2022, 3:28 PMplugins {
kotlin("jvm")
id("org.jetbrains.compose") version "1.2.0-alpha01-dev686"
}
and it works fineLandry Norris
05/19/2022, 3:39 PMNorbi
05/19/2022, 5:04 PMCaused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find org.jetbrains.compose.compilercompiler1.2.0-alpha01-dev686.
mcpiroman
05/19/2022, 7:03 PMbuildscript {
repositories {
mavenCentral()
maven("<https://maven.pkg.jetbrains.space/public/p/compose/dev>")
}
}
?Norbi
05/19/2022, 8:09 PMandylamax
06/02/2022, 11:21 AMandylamax
06/02/2022, 11:23 AM