From 606343b454ff931a7b0168710dd7db659c3065c6 Mon Sep 17 00:00:00 2001 From: gzu-liyujiang <1032694760@qq.com> Date: Tue, 5 Dec 2023 17:06:17 +0800 Subject: [PATCH] update docs --- CHANGELOG.md | 4 ++++ README.md | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ae5cf3..bf580b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # 更新日志 +## 881892f7b6 - 2023/12/05 + +- 支持通过荣耀官方广告标识服务SDK获取OAID [Issues#73](https://github.com/gzu-liyujiang/Android_CN_OAID/issues/73); + ## 4.2.7 - 2023/11/12 - 修复华为高版本手机可能的闪退或卡死问题: [Issues#63](https://github.com/gzu-liyujiang/Android_CN_OAID/issues/63) [Issues#72](https://github.com/gzu-liyujiang/Android_CN_OAID/issues/72)。 diff --git a/README.md b/README.md index ae32083..82d9d2b 100644 --- a/README.md +++ b/README.md @@ -67,9 +67,13 @@ dependencies { implementation('com.github.gzu-liyujiang:Android_CN_OAID:最新版本号') { // 如果使用了移动安全联盟SDK,共存的话需排除掉本项目依赖的华为官方广告标识服务SDK,因为移动安全联盟SDK也依赖了华为的SDK // 如果华为官方广告标识服务SDK下载失败或编译报错的话,可考虑在 build.gradle 中增加以下配置: - // repositories { maven {url 'https://developer.huawei.com/repo/'} } + // repositories { maven { url 'https://developer.huawei.com/repo' } } // runtimeOnly "com.huawei.hms:ads-identifier:3.4.62.300" exclude group: 'com.huawei.hms', module: 'ads-identifier' + // 荣耀方广告标识服务SDK同理: + // repositories { maven { url 'https://developer.hihonor.com/repo' } } + // runtimeOnly "com.hihonor.mcs:ads-identifier:1.0.2.301" + exclude group: 'com.hihonor.mcs', module: 'ads-identifier' } } ```