Skip to content

Commit 1b6158a

Browse files
committed
release as 4.2.10
1 parent ba12377 commit 1b6158a

File tree

5 files changed

+40
-9
lines changed

5 files changed

+40
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# 更新日志
22

3+
## 4.2.11 - 2024/12/01
4+
5+
- 阿里云 Maven 仓库问题。
6+
- FIX #90 预取标识符回调问题。
7+
38
## 4.2.10 - 2024/10/15
49

510
- GMS获取ADID时优化,感谢 @a365344743s 贡献。

build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ buildscript {
1616
apply from: "${rootDir}/gradle/config.gradle"
1717
apply from: "${rootDir}/gradle/dependency.gradle"
1818
repositories {
19-
maven { url 'https://maven.aliyun.com/repositories/public' }
20-
maven { url 'https://maven.aliyun.com/repositories/google' }
19+
maven { url 'https://maven.aliyun.com/repository/public' }
20+
maven { url 'https://maven.aliyun.com/repository/central' }
21+
maven { url 'https://maven.aliyun.com/repository/google' }
2122
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
2223
google()
2324
mavenCentral()
@@ -29,8 +30,9 @@ buildscript {
2930

3031
allprojects {
3132
repositories {
32-
maven { url 'https://maven.aliyun.com/repositories/public' }
33-
maven { url 'https://maven.aliyun.com/repositories/google' }
33+
maven { url 'https://maven.aliyun.com/repository/public' }
34+
maven { url 'https://maven.aliyun.com/repository/central' }
35+
maven { url 'https://maven.aliyun.com/repository/google' }
3436
google()
3537
mavenCentral()
3638
maven { url "https://jitpack.io" }

gradle/init.d/init.gradle

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,32 @@
1+
/*
2+
* Copyright (c) 2016-present. 贵州纳雍穿青人李裕江 and All Contributors.
3+
*
4+
* The software is licensed under the Mulan PSL v2.
5+
* You can use this software according to the terms and conditions of the Mulan PSL v2.
6+
* You may obtain a copy of Mulan PSL v2 at:
7+
* http://license.coscl.org.cn/MulanPSL2
8+
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR
9+
* IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
10+
* PURPOSE.
11+
* See the Mulan PSL v2 for more details.
12+
*/
13+
114
buildscript {
215
repositories {
3-
maven { url 'https://maven.aliyun.com/repositories/jcenter' }
4-
maven { url 'https://maven.aliyun.com/repositories/google' }
16+
maven { url 'https://maven.aliyun.com/repository/public' }
17+
//maven { url 'https://maven.aliyun.com/repository/jcenter' }
18+
maven { url 'https://maven.aliyun.com/repository/central' }
19+
maven { url 'https://maven.aliyun.com/repository/google' }
520
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
621
}
722
}
823

924
allprojects {
1025
repositories {
11-
maven { url 'https://maven.aliyun.com/repositories/jcenter' }
12-
maven { url 'https://maven.aliyun.com/repositories/google' }
26+
maven { url 'https://maven.aliyun.com/repository/public' }
27+
//maven { url 'https://maven.aliyun.com/repository/jcenter' }
28+
maven { url 'https://maven.aliyun.com/repository/central' }
29+
maven { url 'https://maven.aliyun.com/repository/google' }
1330
maven { url 'https://maven.aliyun.com/repository/central' }
1431
maven { url "https://www.jitpack.io" }
1532
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111
# See the Mulan PSL v2 for more details.
1212
#
1313

14+
#Sun Dec 01 12:12:49 CST 2024
1415
distributionBase=GRADLE_USER_HOME
1516
distributionPath=wrapper/dists
16-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
17+
#distributionUrl=file:///G:/\u540C\u6B65\u7A7A\u95F4/\u7F16\u7A0B/\u5F00\u53D1\u5DE5\u5177/gradle-8.9-bin.zip
18+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
1719
zipStoreBase=GRADLE_USER_HOME
1820
zipStorePath=wrapper/dists

library/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ android {
1818
namespace 'com.github.gzuliyujiang.oaid'
1919
}
2020

21+
repositories {
22+
maven { url 'https://developer.huawei.com/repo' }
23+
maven { url 'https://developer.hihonor.com/repo' }
24+
}
25+
2126
dependencies {
2227
// 华为的最新版本广告标识服务SDK,参阅 https://developer.huawei.com/consumer/cn/doc/HMSCore-Guides/identifier-service-version-change-history-0000001050066927
2328
api "com.huawei.hms:ads-identifier:3.4.62.300"

0 commit comments

Comments
 (0)