Android 应用因 Android 广告 ID 政策而不断被拒绝
Posted
技术标签:
【中文标题】Android 应用因 Android 广告 ID 政策而不断被拒绝【英文标题】:Android App Keeps Getting Denied for Android Ad ID Policy 【发布时间】:2019-08-31 08:44:55 【问题描述】:我的应用不断被 Google Play 商店拒绝。
问题:违反使用 android 广告 ID 政策和部分 4.8 开发者分发协议
我用 StartApp 代替 AdMob 试用了一个星期,然后收到通知说它正在被下架。在我使用 StartApp 之前,我已经恢复到旧版本。我不请求 XML 中的任何权限或应用程序 gradle 中的任何特殊权限。这可能是因为 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">
<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>
如果有任何可疑插件要删除,请告诉我
【问题讨论】:
【参考方案1】:为了通过此验证,您的应用必须在应用本身内提供隐私政策,并且该政策还必须托管在一个活动链接上,该链接需要放置在 Google Play 管理中心内的指定字段中。你可以阅读更多关于如何解决你的问题here。希望这能解决您的问题。
【讨论】:
以上是关于Android 应用因 Android 广告 ID 政策而不断被拒绝的主要内容,如果未能解决你的问题,请参考以下文章
设计android应用程序时如何在我的应用程序中获取谷歌广告ID?
google 删除了我的 android 应用”问题:违反使用 Android 广告 ID 政策和开发者分发协议第 4.8 节