-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbuild.gradle
46 lines (39 loc) · 1.02 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
buildscript {
ext {
min_sdk_version = 15
sdk_version = 27
android_plugin_version = '3.1.0'
kotlin_version = '1.2.31'
support_library_version = '27.1.0'
rxjava_version = '2.1.9'
rxjava_android_version = '2.0.1'
junit_version = '4.12'
robolectric_version = '3.5.1'
espresso_core_version = '3.0.1'
test_runner_version = '1.0.1'
pluginDeps = [
android: "com.android.tools.build:gradle:$android_plugin_version",
kotlin : "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version",
publish: rootProject.file("gradle/gradle-mvn-push.gradle")
]
}
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath pluginDeps.android
classpath pluginDeps.kotlin
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}