google删除了我的android应用”“问题:违反了Android广告ID政策和《开发者分发协议》第4.8条的规定

时间:2019-01-03 09:33:44

标签: android

我收到一封电子邮件,指出我的android应用已被Google删除:

其中提到:

Alternatively, you may opt-out of this requirement by removing any requests for sensitive permissions or user data.

我在Android清单中具有以下权限。

<uses-permission android:name="android.permission.INTERNET" /> <!-- is required for volley -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

以下是我的android build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.2"

    defaultConfig {
        applicationId "xxxxx.yyyyyy"
        minSdkVersion 17
        targetSdkVersion 26
        versionCode 3
        versionName "1.2"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:26.1.0'
    compile 'com.mcxiaoke.volley:library:1.0.19'
    compile 'com.github.bumptech.glide:glide:3.7.0'
    compile 'jp.wasabeef:glide-transformations:2.0.1'
    compile 'com.google.firebase:firebase-messaging:11.8.0'
    compile 'com.android.support:design:26.1.0'
    compile 'com.borjabravo:readmoretextview:2.0.1'
    compile 'com.android.support:cardview-v7:26.1.0'
}

apply plugin: 'com.google.gms.google-services'

哪些权限或库导致了隐私问题

1 个答案:

答案 0 :(得分:0)

引用Android Runtime Permissions

  

危险权限是授予应用程序访问用户私人数据或影响系统/其他应用程序的权限。如果您在清单中列出了危险的权限,则用户必须明确授予您的应用程序权限。

如果您查看该列表,就会发现 com.google.android.providers.gsf.permission.READ_GSERVICES 是危险的许可,会导致违规。

EDIT :如果您由于使用Google Maps而具有该权限,则可以安全地将其删除为it is not required anymore