* replace kotlin-android-extensions with kotlin-parcelize * abstract lifecycle_version * remove synthetic import * reformat build.gradle * move appVersionCode to variable * reformat build.gradle * abstract espresso_version * abstract junit_version and android_junit_version * abstract material_version * abstract core_version * reformat * refactor consumer-rules.pro * refactor proguard-rules.pro * remove redundant entries * remove redundant equals of incremental in groovy * abstract room_version * refactor hilt_version * navi-design: revert rm api core-ktx * refactor lottie_version * refactor work_version * refactor kotlin_version * remove kotlin-stdlib as it's already included with kotlin-gradle-plugin * refactor spotless plugin declaration
43 lines
1.2 KiB
Groovy
43 lines
1.2 KiB
Groovy
ext {
|
|
|
|
android_junit_version = '1.1.4'
|
|
appcompat_version = '1.5.1'
|
|
compose_version = '1.2.0-beta03'
|
|
core_version = '1.6.0'
|
|
espresso_version = '3.5.0'
|
|
hilt_version = '2.44'
|
|
junit_version = '4.13.2'
|
|
lifecycle_version = '2.5.1'
|
|
lottie_version = '5.2.0'
|
|
material_version = '1.7.0'
|
|
room_version = '2.4.3'
|
|
work_version = '2.7.1'
|
|
|
|
hiltLibs = [
|
|
implementation : "com.google.dagger:hilt-android:$hilt_version",
|
|
kapt : "com.google.dagger:hilt-compiler:$hilt_version",
|
|
androidTest : "com.google.dagger:hilt-android-testing:$hilt_version",
|
|
kaptAndroidTest : "com.google.dagger:hilt-compiler:$hilt_version",
|
|
test : "com.google.dagger:hilt-android-testing:$hilt_version",
|
|
kaptTest : "com.google.dagger:hilt-compiler:$hilt_version"
|
|
]
|
|
|
|
fragmentLibs = [
|
|
ktx : "androidx.fragment:fragment-ktx:1.5.2"
|
|
]
|
|
|
|
glideLibs = [
|
|
implementation : "com.github.bumptech.glide:glide:4.14.0",
|
|
kapt : "com.github.bumptech.glide:compiler:4.14.0"
|
|
]
|
|
|
|
playCore = [
|
|
implementation : "com.google.android.play:core-ktx:1.8.1"
|
|
]
|
|
|
|
shimmer = [
|
|
implementation : 'com.facebook.shimmer:shimmer:0.5.0'
|
|
]
|
|
|
|
}
|