-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuild.gradle
37 lines (35 loc) · 880 Bytes
/
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
buildscript {
ext {
kotlin_version = "1.4.10"
supportLibraryVersion = '1.0.2'
constraintLayoutVersion = '1.1.3'
material = '1.1.0'
lifecycleVersion = '2.2.0'
retrofit = '2.8.1'
okhttp = '4.9.0'
gson = '2.8.0'
convertergson = '2.6.0'
coroutines = '1.1.1'
hilt_version = '2.35'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io/" }
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}