-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
30 lines (26 loc) · 928 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
apply from: "config.gradle"
buildscript {
repositories {
mavenLocal()
google { url 'https://maven.aliyun.com/repository/google' }
jcenter { url 'https://maven.aliyun.com/repository/jcenter' }
mavenCentral { url 'https://maven.aliyun.com/repository/central' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
classpath "com.yanzhenjie.andserver:plugin:2.1.5"
}
}
allprojects {
repositories {
mavenLocal()
google { url 'https://maven.aliyun.com/repository/google' }
jcenter { url 'https://maven.aliyun.com/repository/jcenter' }
mavenCentral { url 'https://maven.aliyun.com/repository/central' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}