-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle
More file actions
53 lines (45 loc) · 1.35 KB
/
build.gradle
File metadata and controls
53 lines (45 loc) · 1.35 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.4.0'
ext.versions = [
compileSdk : 28,
targetSdk : 26,
minimumSdk : 17,
buildTools : "26.0.2",
support : "28.0.0",
lifecycle : "1.1.1",
rxJava : '2.2.3',
rxKotlin : '2.3.0',
rxAndroid : '2.1.0',
rxbinding : '3.0.0-alpha1',
rxlifecycle: '3.0.0',
coroutines : '0.20',
okio : '2.8.0',
okhttp : '4.8.1',
retrofit : '2.4.0',
glide : '4.11.0',
anko : '0.10.8',
eventbus : '3.1.1',
gson : '2.8.5'
]
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0-rc02'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.tencent.mm:AndResGuard-gradle-plugin:1.2.18'
// 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
}