Android 应用程序不断因 Android 广告 ID 政策而被拒绝
Android App Keeps Getting Denied for Android Ad ID Policy
我的应用一直被 Google Play 商店拒绝。
Issue: Violation of Usage of Android Advertising ID policy and section
4.8 of the Developer Distribution Agreement
我尝试 StartApp 而不是 AdMob 一周,然后我收到了它正在被删除的通知。在我使用 StartApp 之前,我已经恢复到旧版本。我不请求 XML 中的任何权限或应用 gradle 中的任何特殊内容。可能会发生这种情况,因为 SDK 在包中?
Gradle:
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">
<intent-filter>
<action android:name="android.intent.action.MAIN" android:screenOrientation="portrait"/>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".BenButton" android:screenOrientation="portrait"></activity>
</application>
</manifest>
如果有任何可疑的插件要删除,请告诉我
为了通过此验证,您的应用程序必须在应用程序本身内提供隐私政策,并且该政策还必须托管在活动 link 上,需要将其放置在 Google 玩控制台。您可以阅读有关如何解决问题的更多信息 here。希望这能解决您的问题。
我的应用一直被 Google Play 商店拒绝。
Issue: Violation of Usage of Android Advertising ID policy and section 4.8 of the Developer Distribution Agreement
我尝试 StartApp 而不是 AdMob 一周,然后我收到了它正在被删除的通知。在我使用 StartApp 之前,我已经恢复到旧版本。我不请求 XML 中的任何权限或应用 gradle 中的任何特殊内容。可能会发生这种情况,因为 SDK 在包中?
Gradle:
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">
<intent-filter>
<action android:name="android.intent.action.MAIN" android:screenOrientation="portrait"/>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".BenButton" android:screenOrientation="portrait"></activity>
</application>
</manifest>
如果有任何可疑的插件要删除,请告诉我
为了通过此验证,您的应用程序必须在应用程序本身内提供隐私政策,并且该政策还必须托管在活动 link 上,需要将其放置在 Google 玩控制台。您可以阅读有关如何解决问题的更多信息 here。希望这能解决您的问题。