@@ -4,7 +4,7 @@ plugins {
4
4
id(" com.android.library" )
5
5
id(" com.vanniktech.maven.publish" )
6
6
id(" org.jetbrains.kotlin.android" )
7
- alias(libs.plugins.compose.compiler)
7
+ id( " org.jetbrains.kotlin.plugin.compose " ) version Config .kotlinVersion
8
8
}
9
9
10
10
android {
@@ -74,17 +74,17 @@ android {
74
74
}
75
75
76
76
dependencies {
77
- implementation(platform(libs.androidx.compose .bom))
78
- implementation(libs.androidx.compose .ui)
79
- implementation(libs.androidx.compose.ui.graphics )
80
- implementation(libs.androidx.compose .material3)
81
- implementation(libs.androidx.compose .foundation)
82
- implementation(libs.androidx.compose.ui .tooling)
83
- implementation(libs.androidx.compose.ui.tooling.preview )
84
- implementation(libs.androidx.activity.compose )
77
+ implementation(platform(Config . Libs . Androidx . Compose .bom))
78
+ implementation(Config . Libs . Androidx . Compose .ui)
79
+ implementation(Config . Libs . Androidx . Compose .uiGraphics )
80
+ implementation(Config . Libs . Androidx . Compose .material3)
81
+ implementation(Config . Libs . Androidx . Compose .foundation)
82
+ implementation(Config . Libs . Androidx . Compose .tooling)
83
+ implementation(Config . Libs . Androidx . Compose .toolingPreview )
84
+ implementation(Config . Libs . Androidx . Compose .activityCompose )
85
85
implementation(Config .Libs .Androidx .materialDesign)
86
86
implementation(Config .Libs .Androidx .activity)
87
- implementation(libs.androidx.compose.material.icons.extended )
87
+ implementation(Config . Libs . Androidx . Compose .materialIconsExtended )
88
88
// The new activity result APIs force us to include Fragment 1.3.0
89
89
// See https://issuetracker.google.com/issues/152554847
90
90
implementation(Config .Libs .Androidx .fragment)
@@ -116,7 +116,7 @@ dependencies {
116
116
testImplementation(Config .Libs .Test .robolectric)
117
117
testImplementation(Config .Libs .Test .kotlinReflect)
118
118
testImplementation(Config .Libs .Provider .facebook)
119
- testImplementation(libs.androidx.ui.test.junit4 )
119
+ testImplementation(Config . Libs . Test .composeUiTestJunit4 )
120
120
121
121
debugImplementation(project(" :internal:lintchecks" ))
122
122
}
0 commit comments