Vincent Williams
02/01/2021, 1:30 AMbuildFeatures {
compose = true
}
I get the following error:
com.intellij.openapi.externalSystem.model.ExternalSystemException: Could not create task ':app:compileDebugKotlin'.
org/jetbrains/kotlin/gradle/tasks/KotlinCompile
Any ideas why? Im trying to use compose alpha 10 on the latest canary AS and kotlin 1.4.21Timo Drick
02/01/2021, 1:45 AMcomposeOptions {
kotlinCompilerVersion kotlinVersion
kotlinCompilerExtensionVersion rootProject.ext.compose_version
}
kotlinOptions {
jvmTarget = "1.8"
useIR = true
}
Vincent Williams
02/01/2021, 1:51 AM