From d2b934a734aa27e7baf4fe3535d6c98e67206cfc Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 9 Sep 2024 19:27:52 +0200 Subject: [PATCH] [gradle] Add "compose.material3AdaptiveNavigationSuite" shortcut (#5133) Add `compose.material3AdaptiveNavigationSuite` shortcut: ```kotlin kotlin { sourceSets { commonMain.dependencies { implementation(compose.material3AdaptiveNavigationSuite) } } } ``` ## Release Notes ### Features - Gradle Plugin - New `compose.material3AdaptiveNavigationSuite` shortcut in the gradle plugin --- .../src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt b/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt index 0893a941399..592f5a8ce07 100644 --- a/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt +++ b/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt @@ -72,6 +72,7 @@ abstract class ComposePlugin : Plugin { val foundation get() = composeDependency("org.jetbrains.compose.foundation:foundation") val material get() = composeDependency("org.jetbrains.compose.material:material") val material3 get() = composeDependency("org.jetbrains.compose.material3:material3") + val material3AdaptiveNavigationSuite get() = composeDependency("org.jetbrains.compose.material3:material3-adaptive-navigation-suite") val runtime get() = composeDependency("org.jetbrains.compose.runtime:runtime") val runtimeSaveable get() = composeDependency("org.jetbrains.compose.runtime:runtime-saveable") val ui get() = composeDependency("org.jetbrains.compose.ui:ui")