Мне постоянно отказывают в доступе к моему приложению в магазине 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 находится в пакете?
Грейдл:
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>
Пожалуйста, дайте мне знать, если есть какие-либо подозрительные плагины для удаления
Чтобы пройти эту проверку, ваше приложение должно предоставить политику конфиденциальности из самого приложения, и политика также должна быть размещена на активной ссылке, которую необходимо поместить в указанное поле в консоли Google Play. Вы можете прочитать больше о том, как решить вашу проблему здесь. Надеюсь, это решит вашу проблему.