File tree Expand file tree Collapse file tree 3 files changed +22
-19
lines changed Expand file tree Collapse file tree 3 files changed +22
-19
lines changed Original file line number Diff line number Diff line change @@ -74,16 +74,17 @@ android {
74
74
}
75
75
76
76
dependencies {
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 )
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 )
85
85
implementation(Config .Libs .Androidx .materialDesign)
86
86
implementation(Config .Libs .Androidx .activity)
87
+ implementation(libs.androidx.compose.material.icons.extended)
87
88
// The new activity result APIs force us to include Fragment 1.3.0
88
89
// See https://issuetracker.google.com/issues/152554847
89
90
implementation(Config .Libs .Androidx .fragment)
Original file line number Diff line number Diff line change @@ -41,17 +41,6 @@ object Config {
41
41
const val pagingRxJava = " androidx.paging:paging-rxjava3:3.0.0"
42
42
const val recyclerView = " androidx.recyclerview:recyclerview:1.2.1"
43
43
const val materialDesign = " com.google.android.material:material:1.4.0"
44
-
45
- object Compose {
46
- const val bom = " androidx.compose:compose-bom:2025.08.00"
47
- const val ui = " androidx.compose.ui:ui"
48
- const val uiGraphics = " androidx.compose.ui:ui-graphics"
49
- const val toolingPreview = " androidx.compose.ui:ui-tooling-preview"
50
- const val tooling = " androidx.compose.ui:ui-tooling"
51
- const val foundation = " androidx.compose.foundation:foundation"
52
- const val material3 = " androidx.compose.material3:material3"
53
- const val activityCompose = " androidx.activity:activity-compose"
54
- }
55
44
}
56
45
57
46
object Firebase {
Original file line number Diff line number Diff line change 1
1
[versions ]
2
2
kotlin = " 2.2.0"
3
+ androidxComposeBom = " 2025.08.00"
4
+ androidxActivityCompose = " 1.9.0"
3
5
4
6
[libraries ]
7
+ # Compose
8
+ androidx-compose-bom = { group = " androidx.compose" , name = " compose-bom" , version.ref = " androidxComposeBom" }
9
+ androidx-compose-ui = { group = " androidx.compose.ui" , name = " ui" }
10
+ androidx-compose-ui-graphics = { group = " androidx.compose.ui" , name = " ui-graphics" }
11
+ androidx-compose-ui-tooling-preview = { group = " androidx.compose.ui" , name = " ui-tooling-preview" }
12
+ androidx-compose-ui-tooling = { group = " androidx.compose.ui" , name = " ui-tooling" }
13
+ androidx-compose-foundation = { group = " androidx.compose.foundation" , name = " foundation" }
14
+ androidx-compose-material3 = { group = " androidx.compose.material3" , name = " material3" }
15
+ androidx-activity-compose = { module = " androidx.activity:activity-compose" , version.ref = " androidxActivityCompose" }
16
+ androidx-compose-material-icons-extended = { group = " androidx.compose.material" , name = " material-icons-extended" }
17
+
5
18
# Testing
6
19
androidx-ui-test-junit4 = { module = " androidx.compose.ui:ui-test-junit4" }
7
20
You can’t perform that action at this time.
0 commit comments