-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
executable file
·38 lines (34 loc) · 1019 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
35
36
37
38
apply from: "push_config.gradle"
buildscript {
repositories {
google()
jcenter()
maven {
url "https://maven.google.com"
}
maven { url 'https://jitpack.io' }
maven {url 'https://developer.huawei.com/repo/'}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'com.huawei.agconnect:agcp:1.4.1.300'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' // Add this line
classpath 'com.kezong:fat-aar:1.2.15'
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://maven.google.com"
}
maven { url 'https://jitpack.io' }
maven {url 'https://developer.huawei.com/repo/'}
// maven {url 'https://docs.jiguang.cn/jpush/resources/'}
// maven {url 'https://docs.jiguang.cn/jpush/client/Android/android_guide/#jcenter'}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}