0

I try to update my apk to google develop console. However , I get the weird error.

App use these permission in an APK are required to have a privacy policy set (android.permission.CAMERA, android.permission.RECORD_AUDIO)

My app has already had the code like these in manifest. <uses-permission android:name="android.permission.RECORD_AUDIO"/> <uses-permission android:name="android.permission.CAMERA"/>

呂裕翔
  • 41
  • 1
  • 6
  • 1
    u need to set privacy policy url for your play account – jagapathi May 16 '17 at 18:11
  • 1
    Possible duplicate of [Warnings Your Apk Is Using Permissions That Require A Privacy Policy: (android.permission.READ\_PHONE\_STATE)](http://stackoverflow.com/questions/41234205/warnings-your-apk-is-using-permissions-that-require-a-privacy-policy-android-p) – Bill the Lizard May 16 '17 at 18:11
  • Yes I have read these article . I still face the same error. I have . apk still tell me I need to have privacy policy set on two permissions. – 呂裕翔 May 17 '17 at 02:26

2 Answers2

1

basically, when you use those permissions your app has to have a custom privacy policy. Meaning you have to have a link to a website where you have a custom privacy policy covering what you do with those two permissions.

So in your app you have to add a link to the privacy policy you have created. You cannot not declare a privacy policy.

Zoe
  • 27,060
  • 21
  • 118
  • 148
  • Thank for your response . I still have question how I can write these privacy policy in android studio and get the right apk ? – 呂裕翔 May 17 '17 at 01:33
  • You don't write the privacy policy in the APK, you write it on a website and add a link to the site with the privacy policy. [see this image](https://i.stack.imgur.com/Mr2id.png) <---- As you see there is an option inside every app to declare a privacy policy. You have to add a link there to your website and you will be able to upload the APK – Zoe May 17 '17 at 07:57
0

You can display the privacy policy on the first welcome page of your app enter image description here

enter image description here

Dharman
  • 30,962
  • 25
  • 85
  • 135
cao kai
  • 11