-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
38 lines (34 loc) · 899 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
38
buildscript {
ext {
kotlin_version = "1.4.21"
hilt_version = '2.29.1-alpha'
room_version = '2.2.6'
hilt_vm = "1.0.0-alpha02"
lifecycle_version = "2.2.0"
coroutines_android_version = "1.4.0"
exo_version = "2.11.4"
timber_version = "4.7.1"
}
repositories {
google()
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "com.diffplug.spotless:spotless-plugin-gradle:5.6.1"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}