-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.gradle
34 lines (32 loc) · 828 Bytes
/
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
buildscript {
ext.kotlin_version = '1.2.51'
repositories {
google()
jcenter()
maven {
url 'https://dl.bintray.com/heimashi/maven'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.rong360.msm:msm-gradle-plugin:1.0.0'
classpath 'com.novoda:bintray-release:0.8.0'
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url 'https://dl.bintray.com/heimashi/maven'
}
maven {
url "$rootDir/local_maven"
}
}
apply from: rootProject.getRootDir().getAbsolutePath() + "/utils.gradle"
}
task clean(type: Delete) {
delete rootProject.buildDir
}