Showing
1 changed file
with
9 additions
and
1 deletions
@@ -7,6 +7,10 @@ buildscript { | @@ -7,6 +7,10 @@ buildscript { | ||
7 | maven { url 'https://developer.huawei.com/repo/' } | 7 | maven { url 'https://developer.huawei.com/repo/' } |
8 | google() | 8 | google() |
9 | mavenCentral() | 9 | mavenCentral() |
10 | + maven { | ||
11 | + allowInsecureProtocol = true | ||
12 | + url = "http://nexus.boeart.cn/nexus/content/repositories/releases/" | ||
13 | + } | ||
10 | } | 14 | } |
11 | 15 | ||
12 | dependencies { | 16 | dependencies { |
@@ -20,6 +24,10 @@ rootProject.allprojects { | @@ -20,6 +24,10 @@ rootProject.allprojects { | ||
20 | google() | 24 | google() |
21 | jcenter() | 25 | jcenter() |
22 | maven {url 'https://developer.huawei.com/repo/'} | 26 | maven {url 'https://developer.huawei.com/repo/'} |
27 | + maven { | ||
28 | + allowInsecureProtocol = true | ||
29 | + url = "http://nexus.boeart.cn/nexus/content/repositories/releases/" | ||
30 | + } | ||
23 | } | 31 | } |
24 | } | 32 | } |
25 | 33 | ||
@@ -54,7 +62,7 @@ android { | @@ -54,7 +62,7 @@ android { | ||
54 | 62 | ||
55 | dependencies { | 63 | dependencies { |
56 | def mixpush_version = '2.4.0' | 64 | def mixpush_version = '2.4.0' |
57 | - implementation "io.github.mixpush:mixpush-core:$mixpush_version" // 核心包 | 65 | + implementation "io.github.mixpush:mixpush-core:2.4.1" // 核心包 |
58 | implementation "io.github.mixpush:mixpush-huawei:$mixpush_version" // 华为推送 | 66 | implementation "io.github.mixpush:mixpush-huawei:$mixpush_version" // 华为推送 |
59 | implementation group: 'com.alibaba', name: 'fastjson', version: '1.2.68' | 67 | implementation group: 'com.alibaba', name: 'fastjson', version: '1.2.68' |
60 | 68 |
-
Please register or login to post a comment