我一直在拒绝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>
请让我知道是否有任何可删除的插件
答案 0 :(得分:0)
为了通过此验证,您的应用必须在应用内部提供隐私权政策,并且该政策还必须托管在活动链接上,该链接必须放置在Google Play控制台的指定字段中。您可以阅读有关如何解决问题here的更多信息。希望这可以解决您的问题。