Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix "Violation of Usage of Android Advertising ID policy and section 4.8 of the Developer Distribution Agreement"

Today I received this email from 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

I don't collect or transmit Android advertising at all even I don't show advertising in my app.
I've added these dependencies to the app level gradle:

// 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'

If I have to add a privacy policy to my App, How can I create privacy policy?

Edit: I added a privacy policy and after a few hours, my app published again. For creating a privacy policy I used this template

like image 579
hosseinAmini Avatar asked Feb 08 '19 21:02

hosseinAmini


People also ask

How do I reset my advertising ID?

HOW TO RESET YOUR ANDROID ADVERTISING DEVICE ID. To reset your Android advertising ID, Open Google Settings on your Android device by tapping on menu and then on Google Settings once all apps are displayed on the screen. Locate and tap on the Ads menu under Services. Tap on “reset advertising ID” on the new page.

What will happen if I reset advertising ID?

You can't remove or disable the advertising ID entirely. The best that you can do is to “reset” the ID. This wipes the slate clean, and if you do it regularly, you won't build up a big log of information. You can also opt out of personalized ads.

What is advertising ID permission in Android?

The advertising ID is a unique, user-resettable ID for advertising, provided by Google Play services. It gives users better controls and provides developers with a simple, standard system to continue to monetize their apps.

Is it safe to give mobile advertising ID?

Whilst the Advertising ID might not allow you to identify individual users, it could be linked to other information to provide insights into identifiable individuals. This means it can be considered personal data under data protection laws, such as the EU General Data Protection Regulation (GDPR).


1 Answers

You could also disable Advertising ID and Analytics via Firebase:

  • Disable the Advertising ID:

    <meta-data android:name="google_analytics_adid_collection_enabled" android:value="false" />
    
  • Disable Analytics:

    <meta-data android:name="firebase_analytics_collection_deactivated" android:value="true" />
    

Or, you can write your Privacy Policy to say that you use these third-party SDKs that might collect data from users:

enter image description here

like image 142
TermsFeed Avatar answered Sep 20 '22 19:09

TermsFeed