顾海波

【修复】依赖自己的Maven

... ... @@ -7,6 +7,10 @@ buildscript {
maven { url 'https://developer.huawei.com/repo/' }
google()
mavenCentral()
maven {
allowInsecureProtocol = true
url = "http://nexus.boeart.cn/nexus/content/repositories/releases/"
}
}
dependencies {
... ... @@ -20,6 +24,10 @@ rootProject.allprojects {
google()
jcenter()
maven {url 'https://developer.huawei.com/repo/'}
maven {
allowInsecureProtocol = true
url = "http://nexus.boeart.cn/nexus/content/repositories/releases/"
}
}
}
... ... @@ -54,7 +62,7 @@ android {
dependencies {
def mixpush_version = '2.4.0'
implementation "io.github.mixpush:mixpush-core:$mixpush_version" // 核心包
implementation "io.github.mixpush:mixpush-core:2.4.1" // 核心包
implementation "io.github.mixpush:mixpush-huawei:$mixpush_version" // 华为推送
implementation group: 'com.alibaba', name: 'fastjson', version: '1.2.68'
... ...