Skip to content

Commit 7548e07

Browse files
committed
core: Add dependencies
1 parent d01b5ce commit 7548e07

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

app/build.gradle

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ android {
3131
kotlinOptions {
3232
jvmTarget = '1.8'
3333
}
34+
buildFeatures {
35+
viewBinding = true
36+
}
3437
}
3538

3639
dependencies {
@@ -63,4 +66,21 @@ dependencies {
6366
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0"
6467
implementation "androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha03"
6568
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.4.0"
69+
70+
// network
71+
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
72+
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
73+
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.1'
74+
implementation 'com.google.code.gson:gson:2.8.9'
75+
76+
//glide
77+
implementation 'com.github.bumptech.glide:glide:4.13.0'
78+
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.0'
79+
80+
// activity
81+
implementation "androidx.activity:activity-ktx:1.4.0"
82+
83+
//lifecycle
84+
implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.4.1")
85+
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1")
6686
}

0 commit comments

Comments
 (0)