forked from BlueCat-Community/GithubFeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (39 loc) · 1.03 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
buildscript {
ext {
// sdk and tools
compileSdkVersion = 29
minSdkVersion = 21
targetSdkVersion = 29
kotlinVersion = '1.3.50'
materialVersion = '1.1.0-beta01'
ankoVersion = '0.10.8'
// architecture components
archCompomentVersion = '2.0.0'
lifecycleVersion = '2.2.0-alpha03'
roomVersion = '2.2.0-beta01'
retrofitVersion = '2.3.0'
okhttpVersion = '3.11.0'
preferenceRoomVersion = '1.1.8'
timberVersion = '4.7.1'
glideVersion = '4.9.0'
spotlessVersion = '3.22.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:3.5.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.diffplug.spotless:spotless-plugin-gradle:$spotlessVersion"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}