-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
40 lines (34 loc) · 1.01 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
buildscript {
ext {
compileSdkVersion = 24
minSdkVersion = 14
targetSdkVersion = 24
buildToolsVersion = '24.0.1'
gradleVersion = '2.2.3'
supportLibraryVersion = '25.1.0'
kotlinVersion = '1.0.6'
rxJavaVersion = '2.0.4'
jacksonVersion = '2.7.5'
bintrayPluginVersion = '1.7.3'
mavenPluginVersion = '1.4.1'
dokkaVersion = '0.9.9'
}
repositories {
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:$dokkaVersion"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintrayPluginVersion"
classpath "com.github.dcendents:android-maven-gradle-plugin:$mavenPluginVersion"
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}