-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
63 lines (59 loc) · 1.92 KB
/
build.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlinVersion = "1.4.31"
coreKtxVersion = "1.5.0-beta02"
appCompatVersion = "1.2.0"
materialVersion = "1.2.1"
constraintlayoutVersion = "2.0.4"
navigationVersion = "2.3.3"
fragmentKtxVersion = "1.2.5"
pagingVersion = "3.0.0-alpha11"
lifecycleVersion = "2.3.0"
retrofitVersion = "2.9.0"
okhttpVersion = '4.9.0'
okIoVersion = '2.9.0'
coroutinesCoreVersion = '1.3.9'
coroutinesAndroidVersion = '1.4.2'
gsonVersion = '2.8.6'
moshiVersion = '1.11.0'
glideVersion = '4.11.0'
gpuImageVersion = '2.1.0'
glideTransformationsVersion = '4.3.0'
leakCanaryVersion = '2.2'
hiltVersion = '2.28.3-alpha'
hiltViewModelVersion = '1.0.0-alpha02'
datastoreVersion = '1.0.0-alpha06'
recyclerViewVersion = '1.2.0-alpha05'
browserVersion = '1.2.0'
startupVersion = '1.0.0'
liveEventVersion = '1.7.3'
workVersion = '2.4.0'
// test
junitVersion = "4.13.1"
ext_junitVersion = "1.1.2"
espressoCoreVersion = "3.3.0"
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
def nav_version = "2.3.2"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}