-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshared_dependencies.gradle
29 lines (21 loc) · 1.34 KB
/
shared_dependencies.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
dependencies {
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.core:core-ktx:$corektx_version"
implementation "com.google.android.material:material:$material_version"
implementation "androidx.constraintlayout:constraintlayout:$constrant_layout_version"
implementation "androidx.legacy:legacy-support-v4:$legacy_support_version"
implementation "androidx.multidex:multidex:$multidex_version"
api "androidx.navigation:navigation-dynamic-features-fragment:2.3.5"
implementation "com.github.bumptech.glide:glide:$glide_version"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
implementation "com.squareup.okhttp3:logging-interceptor:$logging_interceptor_version"
implementation "com.google.dagger:hilt-android:$hilt_version"
kapt "com.google.dagger:hilt-android-compiler:$hilt_version"
implementation "androidx.hilt:hilt-lifecycle-viewmodel:$hilt_jetpack_version"
kapt "androidx.hilt:hilt-compiler:$hilt_jetpack_version"
kaptAndroidTest "androidx.hilt:hilt-compiler:$hilt_jetpack_version"
}