We recently got this note from Google:
Hello Google Play Developer,
Our records show that your app, […], with package name […], currently violates our User Data policy regarding Personal and Sensitive Information.
Policy issue: Google Play requires developers to provide a valid privacy policy when the app requests or handles sensitive user or device information. Your app requests sensitive permissions (e.g. camera, microphone, accounts, contacts, or phone) or user data, but does not include a valid privacy policy.
Action required: Include a link to a valid privacy policy on your app’s Store Listing page and within your app. You can find more information in our help center.
Alternatively, you may opt-out of this requirement by removing any requests for sensitive permissions or user data.
If you have additional apps in your catalog, please make sure they are compliant with our Prominent Disclosure requirements.
Please resolve this issue by January 30, 2017, or administrative action will be taken to limit the visibility of your app, up to and including removal from the Play Store. Thanks for helping us provide a clear and transparent experience for Google Play users.
Regards,
The Google Play Team
These are the permissions we request:
android =
{
usesExpansionFile = false,
permissions = {
{ name = “.permission.C2D_MESSAGE”, protectionLevel = “signature” },
},
usesPermissions =
{
“android.permission.INTERNET”,
“com.android.vending.CHECK_LICENSE”,
“android.permission.WRITE_EXTERNAL_STORAGE”,
“android.permission.GET_ACCOUNTS”,
“android.permission.RECEIVE_BOOT_COMPLETED”,
“com.google.android.c2dm.permission.RECEIVE”,
“.permission.C2D_MESSAGE”,
},
},
It looks like the obvious culprit might be GET_ACCOUNTS, but I’m not sure.
Most of these perms were added in order to get push messaging working, per the guide here: https://docs.coronalabs.com/guide/events/appNotification/index.html
Any advice on how we could avoid collecting personal information (we don’t want to) while still receiving notifications? We really only send out notifications as regular news updates, not as personal messages of any kind.
Or if there’s no other way, any advice on how we could craft a privacy policy that reflects our complete lack of interest in collecting anybody’s actual personal info?