-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathbuild.gradle
More file actions
65 lines (60 loc) · 1.63 KB
/
build.gradle
File metadata and controls
65 lines (60 loc) · 1.63 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
group 'com.getui.getuiflut'
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
jcenter()
maven {
url "https://mvn.getui.com/nexus/content/repositories/releases/"
}
maven {url 'https://developer.huawei.com/repo/'}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.huawei.agconnect:agcp:1.3.1.300'
}
}
rootProject.allprojects {
repositories {
//Maven URL地址
maven {
url "https://mvn.getui.com/nexus/content/repositories/releases/"
}
maven {url 'https://developer.huawei.com/repo/'}
jcenter()
google()
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 17
ndk {
abiFilters "armeabi", "armeabi-v7a", "x86_64"
}
}
lintOptions {
disable 'InvalidPackage'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.getui:sdk-for-google-play:4.3.5.13'
implementation ('com.getui:hwp-v4:2.0.0'){
exclude group: 'com.getui', module: 'sdk'
}
implementation ('com.getui:mzp:1.0.7'){
exclude group: 'com.getui', module: 'sdk'
}
implementation ('com.assist:oppo:1.0.7'){
exclude group: 'com.getui', module: 'sdk'
}
implementation ('com.assist:vivo:1.0.6'){
exclude group: 'com.getui', module: 'sdk'
}
implementation ('com.getui:xmp:1.0.8'){
exclude group: 'com.getui', module: 'sdk'
}
implementation 'com.huawei.hms:push:5.0.2.300'
}