File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,9 @@ abstract class ComposePlugin : Plugin<Project> {
61
61
}
62
62
}
63
63
64
+ // Please sort them in the order of stable, experimental, and deprecated,
65
+ // and keep them in alphabetical order.
66
+ // Thus make it easier to find a missing dependency.
64
67
@Suppress(" DEPRECATION" )
65
68
class Dependencies (project : Project ) {
66
69
val animation = composeDependency(" org.jetbrains.compose.animation:animation" )
@@ -78,11 +81,13 @@ abstract class ComposePlugin : Plugin<Project> {
78
81
val runtime = composeDependency(" org.jetbrains.compose.runtime:runtime" )
79
82
val runtimeSaveable = composeDependency(" org.jetbrains.compose.runtime:runtime-saveable" )
80
83
val ui = composeDependency(" org.jetbrains.compose.ui:ui" )
81
- val uiBackHandler = composeDependency(" org.jetbrains.compose.ui:ui-backhandler" )
82
84
val uiTest = composeDependency(" org.jetbrains.compose.ui:ui-test" )
83
85
val uiTooling = composeDependency(" org.jetbrains.compose.ui:ui-tooling" )
84
86
val uiUtil = composeDependency(" org.jetbrains.compose.ui:ui-util" )
85
87
88
+ @ExperimentalComposeLibrary
89
+ val uiBackHandler = composeDependency(" org.jetbrains.compose.ui:ui-backhandler" )
90
+
86
91
@Deprecated(" Use desktop.uiTestJUnit4" , replaceWith = ReplaceWith (" desktop.uiTestJUnit4" ))
87
92
val uiTestJUnit4 = composeDependency(" org.jetbrains.compose.ui:ui-test-junit4" )
88
93
You can’t perform that action at this time.
0 commit comments