哪个图书馆正在为我的应用收集广告ID?

时间:2018-10-02 14:20:24

标签: android gradle google-play

我最近收到了一封Google Play电子邮件,说我的公司应用由于缺少收集广告ID的隐私权政策而被删除。这个应用程序不是我写的,因为我有一些Android开发经验,所以我只是在做一些更改。

这是android应用程序的依赖项,

    compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:recyclerview-v7:25.2.0'
compile 'com.google.android.gms:play-services-analytics:10.2.0'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile(
        [group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.4.1'],
        [group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.4.1'],
        [group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.4.1']
)
compile 'com.squareup.okhttp:okhttp-urlconnection:2.0.0'
compile 'com.squareup.okhttp:okhttp:2.3.0'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
compile 'com.j256.ormlite:ormlite-core:4.48'
compile 'com.j256.ormlite:ormlite-android:4.48'

哪个人正在收集广告ID,如何在不损害Android应用功能的情况下将其删除?

1 个答案:

答案 0 :(得分:2)

很可能是Google Analytics(分析)。

我最近在我的一个应用中也遇到了相同的问题,并通过在Google Play控制台中更新隐私政策URL 来解决了该问题。

在隐私政策中,您需要明确指定您不收集任何用户的数据。

现在,您可以以Privacy policy of my app为例。不过将来可能会更改。