Update Compose Compiler version to stable (#2381)

This commit is contained in:
Igor Demin
2022-10-10 14:42:01 +02:00
committed by GitHub
parent d1b1c14f19
commit 4dd1c4a483
2 changed files with 3 additions and 3 deletions

View File

@@ -4,9 +4,9 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType
internal object ComposeCompilerCompatability {
fun compilerVersionFor(kotlinVersion: String): ComposeCompilerVersion? = when (kotlinVersion) {
"1.7.10" -> ComposeCompilerVersion("1.3.0-alpha01")
"1.7.10" -> ComposeCompilerVersion("1.3.0")
"1.7.20" -> ComposeCompilerVersion(
"1.3.2-alpha01",
"1.3.2",
unsupportedPlatforms = setOf(KotlinPlatformType.js)
)
else -> null