How to generate and add privacy policy on Google Play?

11,694

Solution 1

  1. As far as I know, there is no specific standard for the privacy policy. You can have a look at the policies of other reputed apps to get an idea on how to write it.

  2. In the Play Console, first click on the app. There is a left pane with many options like Dashboard, Inbox, Releases, etc. Scroll down on that pane to the bottom, and there you will find "App content". Click on that, and you will find a place to add a link to your privacy policy.

Note that the privacy policy has to be uploaded somewhere else, and you can only put the link to it in Google Play. My apps, for example, are all open-source, so I have uploaded the privacy policy to GitHub and linked to it.

Solution 2

i use the following website for my apps privacy policies https://www.freeprivacypolicy.com/ very simple you don't need to write the entire thing you just fill in some questions and they offer to host the policy on their site and provide you with a url to set in your store listing

Solution 3

Update after the announcement of Launching of Data safety in Play Console

Link to October 2021's announcement

The Google Play's support page now mentions that:

All developers that have an app published on Google Play must complete the Data safety form, including apps on internal, closed, open, or production testing tracks.

Even developers with apps that do not collect any user data are required to complete this form and provide a link to their privacy policy. In this case, the completed form and privacy policy can indicate that no user data is collected or shared.

I did not find any official Google standard/template for the privacy policy either.

Even if my application was not collecting/sharing any information, I decided to follow the steps below in order not to be penalized at a later stage.

To write my application's Privacy Notice

To host my application's Privacy Notice

I uploaded this privacy policy on my personnal website and I checked that it was publicly accessible.

You may want to double check the file permissions and .htaccess rules if you self-host/manage your website.

To update my app information in the Google Play Console

  • I opened Play Console and went to the App content page (Policy > App content).
  • Under "Privacy Policy," I selected Start.
  • I entered the URL hosting the privacy policy online.
  • I saved my changes.

Note: If you’ve previously added a privacy policy and want to make changes, you’ll see and select Manage instead of start.

In my application

  • I reviewed the permissions that I was requesting;
  • I included a link (in the "Settings" section) to my Privacy Policy so that users of my application can easily review it.
Share:
11,694
gkeenley
Author by

gkeenley

Updated on June 03, 2022

Comments

  • gkeenley
    gkeenley about 2 years

    I have to create and add a privacy policy to my Android app. My app accesses background geolocation data, so whatever policy I add has to include info about how location data is used. Two questions:

    1. Is there a standard approach to creating a privacy policy? For example, is there a template that people usually use, that I would be able to add an extra geolocation clause to?

    2. Where in the Google Play console do you add the privacy policy? I went to Store Presence -> Main Store Listing and didn't see any place to add a privacy policy.

  • David
    David over 2 years
    Do you mind sharing a link to your GitHub privacy policy?
  • Wrichik Basu
    Wrichik Basu over 2 years
  • David
    David over 2 years
    Thanks! You added some things I had not considered that I'm sure to use myself.