@@ -88,26 +88,29 @@ dependencies {
88
88
androidTestImplementation(libs.androidx.espresso.core)
89
89
90
90
/* *
91
- * Constraintlayout
91
+ * OkHttp
92
92
*
93
- * https://developer.android.com/jetpack/androidx/releases/constraintlayout
94
- * https://developer.android.com/reference/androidx/constraintlayout/widget/ConstraintLayout
93
+ * https://github.com/square/okhttp
95
94
*/
96
- implementation(libs.androidx.constraintlayout)
95
+ implementation(platform(libs.okhttp.bom))
96
+ implementation(libs.okhttp)
97
+ implementation(libs.logging.interceptor)
97
98
98
99
/* *
99
- * Serialization
100
+ * Retrofit
100
101
*
101
- * https://github.com/Kotlin/kotlinx.serialization
102
+ * https://github.com/square/retrofit
103
+ * https://github.com/square/retrofit/tree/trunk/retrofit-converters/kotlinx-serialization
102
104
*/
103
- implementation(libs.kotlinx.serialization.json)
105
+ implementation(libs.retrofit)
106
+ implementation(libs.converter.kotlinx.serialization)
104
107
105
108
/* *
106
- * SplashScreen
109
+ * Serialization
107
110
*
108
- * https://developer.android. com/reference/androidx/core/splashscreen/SplashScreen
111
+ * https://github. com/Kotlin/kotlinx.serialization
109
112
*/
110
- implementation(libs.androidx.core.splashscreen )
113
+ implementation(libs.kotlinx.serialization.json )
111
114
112
115
/* *
113
116
* Android Jetpack's Navigation component
@@ -120,17 +123,10 @@ dependencies {
120
123
/* *
121
124
* ViewModel Lifecycle
122
125
*
123
- * https://developer.android.com/jetpack/androidx/releases/lifecycle
126
+ * https://developer.android.com/topic/libraries/architecture/viewmodel
124
127
*/
125
128
implementation(libs.androidx.lifecycle.viewmodel.ktx)
126
129
127
- /* *
128
- * SkeletonLayout
129
- *
130
- * https://github.com/Faltenreich/SkeletonLayout
131
- */
132
- implementation(libs.skeletonlayout)
133
-
134
130
/* *
135
131
* Glide
136
132
* BlurTransformation glide-transformations
@@ -140,30 +136,34 @@ dependencies {
140
136
implementation(libs.glide)
141
137
142
138
/* *
143
- * Retrofit
139
+ * DI Koin
144
140
*
145
- * https://github.com/square/retrofit
146
- * https://github.com/square/retrofit/tree/trunk/retrofit-converters/kotlinx-serialization
141
+ * https://github.com/InsertKoinIO/koin
147
142
*/
148
- implementation(libs.retrofit)
149
- implementation(libs.converter.kotlinx.serialization)
143
+ implementation(libs.koin.core)
144
+ implementation(libs.koin.android)
145
+ implementation(libs.koin.annotations)
146
+ ksp(libs.koin.ksp.compiler)
150
147
151
148
/* *
152
- * OkHttp
149
+ * SplashScreen
153
150
*
154
- * https://github. com/square/okhttp
151
+ * https://developer.android. com/reference/androidx/core/splashscreen/SplashScreen
155
152
*/
156
- implementation(platform(libs.okhttp.bom))
157
- implementation(libs.okhttp)
158
- implementation(libs.logging.interceptor)
153
+ implementation(libs.androidx.core.splashscreen)
159
154
160
155
/* *
161
- * DI Koin
156
+ * Constraintlayout
162
157
*
163
- * https://github.com/InsertKoinIO/koin
158
+ * https://developer.android.com/jetpack/androidx/releases/constraintlayout
159
+ * https://developer.android.com/reference/androidx/constraintlayout/widget/ConstraintLayout
164
160
*/
165
- implementation(libs.koin.core)
166
- implementation(libs.koin.android)
167
- implementation(libs.koin.annotations)
168
- ksp(libs.koin.ksp.compiler)
161
+ implementation(libs.androidx.constraintlayout)
162
+
163
+ /* *
164
+ * SkeletonLayout
165
+ *
166
+ * https://github.com/Faltenreich/SkeletonLayout
167
+ */
168
+ implementation(libs.skeletonlayout)
169
169
}
0 commit comments