安卓应用不断被拒绝安卓广告ID政策

我不断被谷歌Play商店拒绝我的应用程序。


问题:违反 Android 广告 ID 使用政策和开发者分发协议第 4.8 条


我尝试了一周的StartApp而不是AdMob,然后我收到了它被关闭的通知。在我使用StartApp之前,我已经恢复到较旧的版本。我不请求XML中的任何权限或应用程序等级中的任何特殊权限。可能发生这种情况,因为 SDK 在包中?


分级:


apply plugin: 'com.android.application'


android {

    compileSdkVersion 28

    defaultConfig {

        applicationId "com.starenkysoftware.benshapiro"

        minSdkVersion 19

        targetSdkVersion 28

        versionCode 25

        versionName "2.05"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }

    buildTypes {

        release {

            minifyEnabled false

            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'

        }

    }

    productFlavors {

    }

}


dependencies {

    implementation fileTree(include: ['*.jar'], dir: 'libs')

    implementation 'com.android.support:appcompat-v7:28.0.0'

    implementation 'com.android.support.constraint:constraint-layout:1.1.3'

    testImplementation 'junit:junit:4.12'

}

清单:


<?xml version="1.1" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.starenkysoftware.benshapiro">


    <application

        android:allowBackup="true"

        android:icon="@mipmap/ic_launcher"

        android:label="@string/app_name"

        android:roundIcon="@mipmap/ic_launcher_round"

        android:supportsRtl="true"

        android:theme="@style/AppTheme">

        <meta-data

            android:name="com.google.android.gms.ads.APPLICATION_ID"

            android:value="ca-app-pub-6127266629309110~9895064255"/>

        <activity android:name="com.starenkysoftware.benshapiro.MainActivity">

      

如果有任何可疑的插件要删除,请告诉我


守候你守候我
浏览 105回答 1
1回答

LEATH

为了通过此验证,您的应用必须从应用本身内部提供隐私权政策,并且该政策还必须托管在活动链接上,该链接需要放置在 Google Play 管理中心的指定字段中。您可以在此处阅读有关如何解决问题的更多信息。希望这可以解决您的问题。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java