31 lines
933 B
Groovy
31 lines
933 B
Groovy
ext {
|
|
|
|
hiltVersion = "2.38.1"
|
|
|
|
hiltLibs = [
|
|
implementation : "com.google.dagger:hilt-android:$hiltVersion",
|
|
kapt : "com.google.dagger:hilt-compiler:$hiltVersion",
|
|
androidTest : "com.google.dagger:hilt-android-testing:$hiltVersion",
|
|
kaptAndroidTest : "com.google.dagger:hilt-compiler:$hiltVersion",
|
|
test : "com.google.dagger:hilt-android-testing:$hiltVersion",
|
|
kaptTest : "com.google.dagger:hilt-compiler:$hiltVersion"
|
|
]
|
|
|
|
fragmentLibs = [
|
|
ktx : "androidx.fragment:fragment-ktx:1.3.5"
|
|
]
|
|
|
|
glideLibs = [
|
|
implementation : "com.github.bumptech.glide:glide:4.12.0",
|
|
kapt : "com.github.bumptech.glide:compiler:4.12.0"
|
|
]
|
|
|
|
playCore = [
|
|
implementation : "com.google.android.play:core-ktx:1.8.1"
|
|
]
|
|
|
|
shimmer = [
|
|
implementation : 'com.facebook.shimmer:shimmer:0.5.0'
|
|
]
|
|
|
|
} |