-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (33 loc) · 1.23 KB
/
build.gradle
File metadata and controls
39 lines (33 loc) · 1.23 KB
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
apply from: "config.gradle"
buildscript {
repositories {
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
// google()
// jcenter(
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.2'
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.1'
//数据库GreenDAO
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
//听云
}
}
allprojects {
repositories {
maven { url "https://dl.bintray.com/tencentqcloudterminal/maven" }
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'https://jitpack.io' }
maven { url "http://mvn.gt.igexin.com/nexus/content/repositories/releases/" }
maven { url 'https://gitee.com/liuchaoya/libcommon/raw/master/repository/' }
// google()
// jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}