简体   繁体   English

您的应用包含不合规的 SDK 版本 com.my.tracker:mytracker-sdk

[英]Your app includes non compliant SDK version com.my.tracker:mytracker-sdk

I recently updated my Flutter app with Appodeal ads, later I got a message.我最近用 Appodeal 广告更新了我的 Flutter 应用程序,后来我收到了一条消息。

Google Play Console:谷歌播放控制台:

Your app **** version code *** includes SDK com.my.tracker:mytracker-sdk or an SDK that one of your libraries depends on, which collects personal or sensitive data that includes but may not be limited to Advertising ID, Android ID, Device Wifi MAC identifiers.您的应用程序 **** 版本代码 *** 包括 SDK com.my.tracker:mytracker-sdk 或 SDK,您的一个库可能包含但不限于收集的个人数据或敏感数据依赖于哪个 SDK, Android ID,设备 Wifi MAC 标识符。 Persistent device identifiers may not be linked to other personal and sensitive user data or resettable device identifiers as described in the User Data policy.永久设备标识符不得与用户数据政策中所述的其他个人和敏感用户数据或可重置设备标识符相关联。

where can I find in my app SDK com.my.tracker:mytracker-sdk我在哪里可以找到我的应用程序 SDK com.my.tracker:mytracker-sdk

app>build.gradle应用程序>构建.gradle

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'com.google.firebase:firebase-analytics:21.1.1'
implementation ('com.appodeal.ads:sdk:3.0.0.+') {
    exclude group: 'com.appodeal.ads.sdk.services', module: 'adjust'
    exclude group: 'com.appodeal.ads.sdk.services', module: 'appsflyer'
    exclude group: 'com.appodeal.ads.sdk.services', module: 'firebase'
    exclude group: 'com.appodeal.ads.sdk.services', module: 'facebook_analytics'
}
implementation 'com.appodeal.ads.sdk.services:firebase:3.0.0.+'

}

How to make persistent device identifiers not be linked to other personal and sensitive user data or resettable device identifiers??如何使持久设备标识符不链接到其他个人和敏感用户数据或可重置设备标识符?

How should I resolve this problem.我应该如何解决这个问题。 Do I really need to stop advertising (using appodeal)?我真的需要停止广告(使用 appodeal)吗?

myTracker is included in the myTarget SDK, which is part of the Appodeal SDK. myTracker 包含在 myTarget SDK 中,它是 Appodeal SDK 的一部分。 Try to exclude the myTarget adapter in the build.gradle尝试排除 build.gradle 中的 myTarget 适配器

exclude group: 'com.appodeal.ads.sdk.networks', module: 'my_target'

Message i got from Appodeal support.我从 Appodeal 支持收到的消息。 and it seems to work它似乎工作

Currently, MyTracker has released an updated version, 3.0.9, which includes all necessary fixes and to update the MyTracker library, please resync your dependencies file with all dependencies, and the new MyTracker version will be downloaded automatically.目前,MyTracker 已发布更新版本 3.0.9,其中包含所有必要的修复程序,若要更新 MyTracker 库,请将您的依赖文件与所有依赖项重新同步,新的 MyTracker 版本将自动下载。

I did an update to version 3.0.9 instead an error occurred, then I changed it to 3.0.0.4 with normal success.我对 3.0.9 版本进行了更新,但发生了错误,然后我将其更改为 3.0.0.4 并正常成功。 Will this version 3.0.0.4 also still get SDK violation warnings from Google Play此版本 3.0.0.4 是否还会收到来自 Google Play 的 SDK 违规警告

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM