0

In my android application I use camera access and also use storage read/write then privacy policy needed for publish my android app? And also if I got warning to add privacy policy then what I have to do?

madhan kumar
  • 1,560
  • 2
  • 26
  • 36
vicky b
  • 13
  • 3
  • do you manifest permission? – ZeroOne Mar 06 '17 at 05:39
  • Yes I do @ZeroOne – vicky b Mar 06 '17 at 06:12
  • Hey there, yes you need a privacy policy for camera access/storage read/write. The sensitive permissions are a data collection practice that gets flagged by Google and therefore consequently need a privacy policy. You have to disclose your use of the two permissions and state the purpose of these permissions in your app. [This post](http://www.iubenda.com/blog/warning-google-play-developer-policy-violation-action-required-policy-issue/) will help you getting that done. Hope this helps. – Simon Mar 07 '17 at 08:36

1 Answers1

1

Yes, you need a Privacy Policy because camera is a sensitive permission that triggers the requirement of having a Privacy Policy.

Other sensitive permissions that you may request from your manifest group file can include: record audio, read phone state, get accounts, read contacts

What you can do is:

  • If you do not need camera access, update the manifest group file and remove asking for this permission
  • If you need camera access, update your app listing page by adding a Privacy Policy.

How to update your listing page:

  1. Log into your Google Play Developer Console
  2. Select "All Applications"
  3. Select your app
  4. Click "Store Listing"
  5. Enter the public URL of your Privacy Policy at the "Privacy Policy" field:

Privacy Policy field URL from Google Play Store via TermsFeed

Where to host your Privacy Policy

You must host the agreement yourself as Google won't host it for you. If you don't have a website for your app, other free options are:

You can look into TermsFeed, but full disclosure: this is our tool to create and host a Privacy Policy for Google Play Store apps.

TermsFeed
  • 1,604
  • 8
  • 8