You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Since Kotlin $newCompilerIsAvailableVersion to use Compose Multiplatform "+
42
+
"you must apply \"$newComposeCompilerKotlinSupportPluginId\" plugin."+
43
+
"\nSee the migration guide https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-compiler/compose-compiler.html#migrating-a-compose-multiplatform-project"
Copy file name to clipboardexpand all lines: gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposeExtension.kt
+3
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ abstract class ComposeExtension @Inject constructor(
31
31
* ```
32
32
* (see available versions here: https://developer.android.com/jetpack/androidx/releases/compose-kotlin#pre-release_kotlin_compatibility)
33
33
*/
34
+
@Deprecated("Since Kotlin $newCompilerIsAvailableVersion Compose Compiler configuration is moved to the \"$newComposeCompilerKotlinSupportPluginId\" plugin")
34
35
val kotlinCompilerPlugin:Property<String?> = objects.nullableProperty()
35
36
36
37
/**
@@ -41,6 +42,7 @@ abstract class ComposeExtension @Inject constructor(
@Deprecated("Since Kotlin $newCompilerIsAvailableVersion Compose Compiler configuration is moved to the \"$newComposeCompilerKotlinSupportPluginId\" plugin")
44
46
val kotlinCompilerPluginArgs:ListProperty<String> = objects.listProperty(String::class.java)
45
47
46
48
/**
@@ -51,6 +53,7 @@ abstract class ComposeExtension @Inject constructor(
@Deprecated("Since Kotlin $newCompilerIsAvailableVersion Compose Compiler configuration is moved to the \"$newComposeCompilerKotlinSupportPluginId\" plugin")
54
57
val platformTypes:SetProperty<KotlinPlatformType> = objects.setProperty(KotlinPlatformType::class.java).apply {
Copy file name to clipboardexpand all lines: gradle-plugins/compose/src/test/kotlin/org/jetbrains/compose/test/tests/integration/KotlinCompatibilityTest.kt
0 commit comments