Luke
09/18/2020, 8:45 PMandroid {
...
composeOptions {
kotlinCompilerVersion = "1.4.0"
kotlinCompilerExtensionVersion = "1.0.0-alpha3"
}
buildFeatures.compose = true
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile::class.java).configureEach {
kotlinOptions {
freeCompilerArgs += listOf(
"-Xopt-in=kotlin.RequiresOptIn",
"-Xopt-in=kotlin.Experimental",
"-Xallow-jvm-ir-dependencies'"
)
jvmTarget = "1.8"
}
}
I keep hitting:
Execution failed for task ':my-module:prepareDebugKotlinCompileTask'.
> Could not resolve all files for configuration ':my-module:kotlin-extension'.
> Could not find androidx.compose:compose-compiler:1.0.0-alpha3.
I don’t understand what could cause this error… Does someone have an idea?Mark Murphy
09/18/2020, 10:38 PM1.0.0-alpha03
.efemoney
09/19/2020, 12:16 AMalpha3
artifact anywhere, its alpha02
as of right now.Val Salamakha
09/19/2020, 1:49 AMefemoney
09/19/2020, 10:28 AMalpha03
Luke
09/21/2020, 1:22 PM