@@ -45,48 +45,50 @@ glide = { group = "com.github.bumptech.glide", name = "glide", version.ref = "gl
45
45
glide-compiler = { group = " com.github.bumptech.glide" , name = " ksp" , version.ref = " glide" }
46
46
47
47
# [ANDROIDX]
48
- androidx-lifecycle-ktx = { group = " androidx.lifecycle" , name = " lifecycle-runtime-ktx" , version.ref = " androidxLifecycle" }
49
- androidx-core-ktx = { group = " androidx.core" , name = " core-ktx" , version.ref = " androidxCore" }
50
48
androidx-appcompat = { group = " androidx.appcompat" , name = " appcompat" , version.ref = " androidxAppcompat" }
49
+ androidx-compose-bom = { group = " androidx.compose" , name = " compose-bom" , version.ref = " androidxComposeBom" }
50
+ androidx-compose-foundation = { group = " androidx.compose.foundation" , name = " foundation" }
51
+ androidx-compose-material = { group = " androidx.compose.material" , name = " material" }
52
+ androidx-compose-material-icons-core = { group = " androidx.compose.material" , name = " material-icons-core" }
53
+ androidx-compose-material-icons-extended = { group = " androidx.compose.material" , name = " material-icons-extended" }
54
+ androidx-compose-material3 = { group = " androidx.compose.material3" , name = " material3" }
55
+ androidx-compose-runtime = { group = " androidx.compose.runtime" , name = " runtime" }
56
+ androidx-compose-ui = { group = " androidx.compose.ui" , name = " ui" }
57
+ androidx-compose-ui-test = { group = " androidx.compose.ui" , name = " ui-test-junit4" }
58
+ androidx-compose-ui-tooling = { group = " androidx.compose.ui" , name = " ui-tooling" }
59
+ androidx-compose-ui-util = { group = " androidx.compose.ui" , name = " ui-util" }
51
60
androidx-constraintlayout = { group = " androidx.constraintlayout" , name = " constraintlayout" , version.ref = " androidxConstraintlayout" }
61
+ androidx-core-ktx = { group = " androidx.core" , name = " core-ktx" , version.ref = " androidxCore" }
62
+ androidx-espresso-core = { group = " androidx.test.espresso" , name = " espresso-core" , version.ref = " androidxEspresso" }
52
63
androidx-fragment-ktx = { group = " androidx.fragment" , name = " fragment-ktx" , version.ref = " androidxFragment" }
53
- compose-bom = { group = " androidx.compose" , name = " compose-bom" , version.ref = " androidxComposeBom" }
54
- compose-ui = { group = " androidx.compose.ui" , name = " ui" }
55
- compose-ui-tooling = { group = " androidx.compose.ui" , name = " ui-tooling" }
56
- compose-ui-util = { module = " androidx.compose.ui:ui-util" }
57
- compose-runtime = { group = " androidx.compose.runtime" , name = " runtime" }
58
- compose-foundation = { group = " androidx.compose.foundation" , name = " foundation" }
59
- compose-material = { group = " androidx.compose.material" , name = " material" }
60
- compose-material-icons-core = { group = " androidx.compose.material" , name = " material-icons-core" }
61
- compose-material-icons-extended = { group = " androidx.compose.material" , name = " material-icons-extended" }
62
- compose-material3 = { group = " androidx.compose.material3" , name = " material3" }
63
- compose-tests-ui = { group = " androidx.compose.ui" , name = " ui-test-junit4" }
64
- junit-android = { group = " androidx.test.ext" , name = " junit" , version.ref = " androidxTestJunit" }
65
- espresso-core = { group = " androidx.test.espresso" , name = " espresso-core" , version.ref = " androidxEspresso" }
64
+ androidx-lifecycle-ktx = { group = " androidx.lifecycle" , name = " lifecycle-runtime-ktx" , version.ref = " androidxLifecycle" }
65
+ androidx-test-junit = { group = " androidx.test.ext" , name = " junit" , version.ref = " androidxTestJunit" }
66
66
67
67
# [GOOGLE]
68
- material = { group = " com.google.android.material" , name = " material" , version.ref = " material" }
68
+ google- material = { group = " com.google.android.material" , name = " material" , version.ref = " material" }
69
69
hilt-android = { group = " com.google.dagger" , name = " hilt-android" , version.ref = " hilt" }
70
70
hilt-compiler = { group = " com.google.dagger" , name = " hilt-compiler" , version.ref = " hilt" }
71
71
72
- # [TOOLS]
73
- reflection = { group = " org.jetbrains.kotlin" , name = " kotlin-reflect" , version.ref = " kotlin" }
74
- detekt-formatting = { module = " io.gitlab.arturbosch.detekt:detekt-formatting" , version.ref = " detektFormatting" }
75
-
76
72
# [TESTS]
77
73
junit4 = { group = " junit" , name = " junit" , version.ref = " junit4" }
78
74
75
+ # [TOOLS]
76
+ kotlinx-reflection = { group = " org.jetbrains.kotlin" , name = " kotlin-reflect" , version.ref = " kotlin" }
77
+
78
+ # [OTHERS]
79
+ detekt-formatting = { module = " io.gitlab.arturbosch.detekt:detekt-formatting" , version.ref = " detektFormatting" }
80
+
79
81
[bundles ]
80
- compose = [" compose-ui" , " compose-ui-tooling" , " compose-ui-util" , " compose-runtime" , " compose-foundation" , " compose-material" , " compose-material-icons-core" , " compose-material-icons-extended" , " compose-material3" ]
82
+ androidxcompose = [" androidx- compose-ui" , " androidx- compose-ui-tooling" , " androidx- compose-ui-util" , " androidx- compose-runtime" , " androidx- compose-foundation" , " androidx- compose-material" , " androidx- compose-material-icons-core" , " androidx- compose-material-icons-extended" , " androidx- compose-material3" ]
81
83
82
84
[plugins ]
83
85
android-application = { id = " com.android.application" , version.ref = " androidGradlePlugin" }
84
86
android-library = { id = " com.android.library" , version.ref = " androidGradlePlugin" }
87
+ detekt = { id = " io.gitlab.arturbosch.detekt" , version.ref = " detekt" }
88
+ firebase-appdistribution = { id = " com.google.firebase.appdistribution" , version.ref = " firebaseAppdistributionPlugin" }
89
+ hilt = { id = " com.google.dagger.hilt.android" , version.ref = " hilt" }
85
90
kotlin-android = { id = " org.jetbrains.kotlin.android" , version.ref = " kotlin" }
86
- kotlin-kapt = { id = " org.jetbrains.kotlin.kapt" , version.ref = " kotlin" }
87
91
kotlin-jvm = { id = " org.jetbrains.kotlin.jvm" , version.ref = " kotlin" }
92
+ kotlin-kapt = { id = " org.jetbrains.kotlin.kapt" , version.ref = " kotlin" }
88
93
kotlin-parcelize = { id = " org.jetbrains.kotlin.plugin.parcelize" , version.ref = " kotlin" }
89
- hilt = { id = " com.google.dagger.hilt.android" , version.ref = " hilt" }
90
- firebase-appdistribution = { id = " com.google.firebase.appdistribution" , version.ref = " firebaseAppdistributionPlugin" }
91
94
ksp = { id = " com.google.devtools.ksp" , version.ref = " ksp" }
92
- detekt = { id = " io.gitlab.arturbosch.detekt" , version.ref = " detekt" }
0 commit comments