Сегодня я получил это письмо от Google:
Hi developers at ...,
After review, appName, com.app.package, has been removed from Google Play due to a policy violation. This app won’t be available to users until you submit a compliant update.
Issue: Violation of Usage of Android Advertising ID policy and section 4.8 of the Developer Distribution Agreement
Google Play requires developers to provide a valid privacy policy when the app requests or handles sensitive user or device information. We’ve identified that your app collects and transmits the Android advertising identifier, which is subject to a privacy policy requirement. If your app collects the Android advertising ID, you must provide a valid privacy policy in both the designated field in the Play Console, and from within the app.
Next steps: Submit your app for another review
Read through the Usage of Android Advertising ID and User Data policies, as well as the Developer Distribution Agreement, and make appropriate changes to your app. If you decide to collect sensitive user information, be sure to abide by the above policies, and include a link to a valid privacy policy on your app's store listing page and within your app. Make sure that your app is compliant with all other Developer Program Policies. Additional enforcement could occur if there are further policy violations. Sign in to your Play Console and submit the update to your app. Alternatively, you may opt-out of this requirement by removing any requests for sensitive permissions or user data.
If approved, your app will again be available with all installs, ratings, and reviews intact.
If you’ve reviewed the policy and feel this removal may have been in error, please reach out to our policy support team. One of my colleagues will get back to you within 2 business days.
Thanks for helping us provide a clear and transparent experience for Google Play users.
Regards,
Justin
Я вообще не собираю и не передаю рекламу Android, даже не показываю рекламу в своем приложении.
Я добавил эти зависимости в градиент уровня приложения:
// Firebase Core
implementation 'com.google.firebase:firebase-core:16.0.7'
// Crashlytics
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.8'
// Firebase Cloud Messaging
implementation 'com.google.firebase:firebase-messaging:17.3.4'
// Google Play services
implementation 'com.google.android.gms:play-services-auth:16.0.1'
Если мне нужно добавить политику конфиденциальности в свое приложение, как я могу создать политику конфиденциальности?
Редактировать: Я добавил политику конфиденциальности, и через несколько часов мое приложение снова было опубликовано. Для создания политики конфиденциальности я использовал этот шаблон
Поскольку вы воспользовались сервисом Google Play, он позволяет вам получить доступ к идентификатору рекламодателя как части API: http://www.androiddocs.com/google/play-services/id.html.
Вы можете следовать этому руководству по политике конфиденциальности Google для своего проекта. https://developers.google.com/actions/policies/privacy-policy-guide
С точки зрения дизайна я бы поставил его там, где он виден. Расскажите своему клиенту, почему вы используете Google Play API, и изложите это так, чтобы ваш клиент понял.
Что касается конкретного, это довольно ясно для меня:
Read through the Usage of Android Advertising ID and User Data policies, as well as the Developer Distribution Agreement, and make appropriate changes to your app. If you decide to collect sensitive user information, be sure to abide by the above policies, and include a link to a valid privacy policy on your app's store listing page and within your app. Make sure that your app is compliant with all other Developer Program Policies. Additional enforcement could occur if there are further policy violations. Sign in to your Play Console and submit the update to your app. Alternatively, you may opt-out of this requirement by removing any requests for sensitive permissions or user data.
Либо вы прекращаете использовать службу Google Play, либо добавляете действующую политику конфиденциальности в свое описание, в свое приложение и в свой магазин приложений.
Вы также можете запрещать Рекламный идентификатор и Analytics через Firebase:
Отключить рекламный идентификатор:
<meta-data android:name = "google_analytics_adid_collection_enabled" android:value = "false" />
Отключить аналитику:
<meta-data android:name = "firebase_analytics_collection_deactivated" android:value = "true" />
Или вы можете написать свою Политику конфиденциальности сказать, что вы используете для этих сторонних SDK, которые могут собирать данные от пользователей:
Я уже сделал политику конфиденциальности и установил ее в консоли разработчика Android. Что еще мне нужно сделать?
Я не знаю, что я должен написать для политики конфиденциальности. Можете ли вы привести пример?