Skip to content

Commit

Permalink
release as 4.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
liyujiang-gzu committed Dec 1, 2024
1 parent ba12377 commit 1b6158a
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# 更新日志

## 4.2.11 - 2024/12/01

- 阿里云 Maven 仓库问题。
- FIX #90 预取标识符回调问题。

## 4.2.10 - 2024/10/15

- GMS获取ADID时优化,感谢 @a365344743s 贡献。
Expand Down
10 changes: 6 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ buildscript {
apply from: "${rootDir}/gradle/config.gradle"
apply from: "${rootDir}/gradle/dependency.gradle"
repositories {
maven { url 'https://maven.aliyun.com/repositories/public' }
maven { url 'https://maven.aliyun.com/repositories/google' }
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
google()
mavenCentral()
Expand All @@ -29,8 +30,9 @@ buildscript {

allprojects {
repositories {
maven { url 'https://maven.aliyun.com/repositories/public' }
maven { url 'https://maven.aliyun.com/repositories/google' }
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url 'https://maven.aliyun.com/repository/google' }
google()
mavenCentral()
maven { url "https://jitpack.io" }
Expand Down
25 changes: 21 additions & 4 deletions gradle/init.d/init.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,32 @@
/*
* Copyright (c) 2016-present. 贵州纳雍穿青人李裕江 and All Contributors.
*
* The software is licensed under the Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
* PURPOSE.
* See the Mulan PSL v2 for more details.
*/

buildscript {
repositories {
maven { url 'https://maven.aliyun.com/repositories/jcenter' }
maven { url 'https://maven.aliyun.com/repositories/google' }
maven { url 'https://maven.aliyun.com/repository/public' }
//maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
}
}

allprojects {
repositories {
maven { url 'https://maven.aliyun.com/repositories/jcenter' }
maven { url 'https://maven.aliyun.com/repositories/google' }
maven { url 'https://maven.aliyun.com/repository/public' }
//maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url "https://www.jitpack.io" }
}
Expand Down
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@
# See the Mulan PSL v2 for more details.
#

#Sun Dec 01 12:12:49 CST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
#distributionUrl=file:///G:/\u540C\u6B65\u7A7A\u95F4/\u7F16\u7A0B/\u5F00\u53D1\u5DE5\u5177/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
5 changes: 5 additions & 0 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ android {
namespace 'com.github.gzuliyujiang.oaid'
}

repositories {
maven { url 'https://developer.huawei.com/repo' }
maven { url 'https://developer.hihonor.com/repo' }
}

dependencies {
// 华为的最新版本广告标识服务SDK,参阅 https://developer.huawei.com/consumer/cn/doc/HMSCore-Guides/identifier-service-version-change-history-0000001050066927
api "com.huawei.hms:ads-identifier:3.4.62.300"
Expand Down

0 comments on commit 1b6158a

Please sign in to comment.