-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (36 loc) · 1.27 KB
/
build.gradle
File metadata and controls
37 lines (36 loc) · 1.27 KB
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
30
31
32
33
34
35
36
37
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
recyclerviewVersion = "1.2.1"
retrofitVersion = "2.9.0"
coroutineVersion = "1.4.1"
okhttpVersion = "4.9.0"
glideVersion = "4.12.0"
lifecycleVersion = "2.5.1"
threeTenAbpVersion = "1.3.0"
timberVersion = "5.0.1"
moshiVersion = "1.13.0"
lottieVersion = "4.1.0"
roomVersion = "2.4.2"
sandwichVersion = '1.2.0'
hiltVersion = '2.44'
viewbindingVersion = '1.0.3'
navigation = '2.4.2'
activityKtxVersion = "1.5.1"
fragmentKtxVersion = "1.5.3"
multiStateViewVersion = "2.2.0"
shimmerVersion = "0.5.0"
dataStoreVersion = "1.0.0"
}
}
plugins {
id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id("com.google.dagger.hilt.android") version "2.44" apply false
id 'androidx.navigation.safeargs' version '2.4.2' apply false
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' version '2.0.1' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}