-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetmera.gradle
49 lines (42 loc) · 1.33 KB
/
netmera.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
android.defaultConfig {
resValue "bool", "netmera_use_default_push_receiver", "false"
}
repositories {
google()
jcenter()
maven { url 'http://developer.huawei.com/repo/' }
}
buildscript {
repositories {
maven { url 'https://plugins.gradle.org/m2/' }
google()
jcenter()
maven { url 'http://developer.huawei.com/repo/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.google.gms:google-services:4.3.4'
classpath 'com.huawei.agconnect:agcp:1.3.1.300'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'http://developer.huawei.com/repo/' }
maven { url "http://release.netmera.com/release/android" }
}
}
dependencies {
implementation platform('com.google.firebase:firebase-bom:26.1.0')
implementation 'com.google.firebase:firebase-messaging'
implementation 'com.google.gms:google-services:4.3.4'
implementation 'com.google.android.gms:play-services-location:17.1.0'
implementation ("com.netmera:netmera:3.8.5-beta7") {
exclude group: "com.scottyab"
}
}
//must be add the bottom of app's build gradle
//apply plugin: 'com.google.gms.google-services'
//apply plugin: 'com.huawei.agconnect'
apply plugin: com.google.gms.googleservices.GoogleServicesPlugin