-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
72 lines (61 loc) · 1.79 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
64
65
66
67
68
69
70
71
72
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
plugin = [
gradle: '3.6.3',
kotlin: '1.3.72'
]
app = [
code: 1,
name: '1.0.0'
]
sdk = [
min : 21,
max : 29,
compile : 29,
build_tool: "29.0.2"
]
libs = [
material : '1.3.0-alpha02',
appcompat : '1.1.0',
core : '1.3.1',
constraint : '2.0.0-rc1',
swipe : '1.0.0',
vector : '1.1.0',
coroutines : '1.3.7',
lifecycle : '2.2.0',
junit : '4.13-beta-2',
espresso : '3.2.0-beta01',
uiautomator : '2.2.0',
gson : '2.8.5',
refresh : '1.1.0',
retrofit : '2.5.0',
retrofit_gson: '2.3.0',
secure : '1.1.0-alpha01',
preference : '1.1.1',
]
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:${plugin.gradle}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$plugin.kotlin"
//Added for bintray upload
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
subprojects {
tasks.withType(Javadoc).all { enabled = false }
}