Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WP7 Policy Check

I'm trying to upload an application to the Windows Phone Marketplace but it keeps failing due to the location privacy policy. In the application there is only one part that checks your location, and the user has to manually call it. Basically we show a map, and a button to locate the user, when this button is pressed for the first time, we show a small privacy policy, and we ask the user to allow the use of his location. And even with this, the application's certification failed.

I'm wondering if anyone has a good example of how the privacy policy should be, and if it should be displayed when the app is first launched, rather than when the locations services are activated by the user (like we are currently doing it). And any other tips or advice you may have.

This is the only part of the certification the app failed, so once I get some good answers, it'll be ready to go.

Thanks!

like image 778
Carlo Avatar asked Oct 12 '22 16:10

Carlo


1 Answers

Make sure to read the Windows Phone 7 Application Certification Requirements.

Section 2.10 specifically applies to your problem.

Microsoft really wants you to have a permanent link to your privacy policy somewhere in the app. Your privacy policy should explicitly explain that you collect this data, how you use it, how you store it, who you share it with, and what the user can do about it. You also need a setting somewhere for the user to turn use of GeoLocation data off.

In my app I have an About screen with a link to the PrivPol, TOS and Tech Support. I also have a settings page with an ON / OFF switch for GeoLocation data. I made sure our privacy policy explicitly addresses location data. And we got through approval with no issues.

YMMV.

like image 102
i_am_jorf Avatar answered Oct 18 '22 01:10

i_am_jorf