-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
executable file
·59 lines (53 loc) · 1.97 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
49
50
51
52
53
54
55
56
57
58
59
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply from: "config.gradle"
buildscript {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven {
url "http://repo.baichuan-android.taobao.com/content/groups/BaichuanRepositories/"
// url 'http://maven.aliyun.com/nexus/content/repositories/releases/'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
classpath 'com.leon.channel:plugin:1.0.1'
classpath 'com.jakewharton:butterknife-gradle-plugin:8.8.1'
// 只需配置tinker-support插件依赖,无需再依赖tinker插件
classpath 'com.tencent.bugly:tinker-support:1.1.2'
// bugly 避免混淆
classpath 'com.tencent.bugly:symtabfileuploader:2.1.0'
// greendao
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.1'
// classpath 'com.sensorsdata.analytics.android:android-gradle-plugin2:3.0.5'
// classpath 'com.oneapm.agent.android:plugin-gradle:5.5.3.5'
// classpath 'com.oneapm.agent.android:rewriter:5.5.3.5'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven {
url "http://repo.baichuan-android.taobao.com/content/groups/BaichuanRepositories/"
// url 'http://maven.aliyun.com/nexus/content/repositories/releases/'
}
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url 'http://developer.huawei.com/repo/'
} // 华为推送
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}