-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (40 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
48
buildscript {
ext {
compileSDK = 27
minSDK = 19
targetSDK = 27
gradleTools = '2.3.3'
buildTools = '27.0.2'
supportLibrary = '27.0.2'
customTabs = '25.3.1'
timber = '4.6.0'
archComponents = '1.0.0'
constraintLayout = '1.0.2'
kotlin_version = '1.2.21'
bintray_plugin = '1.7.3'
maven_gradle = '1.4.1'
}
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleTools"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintray_plugin"
classpath "com.github.dcendents:android-maven-gradle-plugin:$maven_gradle"
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}