Windows 8 app rejected due to privacy policy

I am new to developing applications for Windows 8, I have been working on Web Api, but my application is rejected because it does not contain a Privacy Policy. How to add it?

+6
source share
3 answers

You need to add the privacy policy in the "Enchantment Settings" section of the "Windows 8" application, which can be achieved by pressing the "Windows + C" key. Rest you need to make a blog / website that targets you on the privacy policy page. Copy and paste the code below

http://www.andybeaulieu.com/Default.aspx?tabid=67&EntryID=228

For an example privacy policy, visit

http://apoorvkupadhyay.blogspot.in

+8
source

You can simply create a web page with the text of your private policy. That "Application Insertion Name does not collect any information about you" is sufficient. Once you have the URL, you can add the private "section" charms inside the settings:

SettingsCommand privacy = new SettingsCommand("privacy", "Privacy Policy", (uiCommand) => { ShowSettingsPanel(); }); args.Request.ApplicationCommands.Add(privacy); 

Then in the ShowSettingsPanel function (for example) just open the browser:

 Launcher.LaunchUriAsync(new Uri("http://colorchallenge.co.nf/privacy_policy.html")); 

Remember that you need to tell the program what you want to add to the settings section. To do this, if MyApp_CommandsRequested is the name of the function in which you have the code at the beginning, you should do this:

 SettingsPane.GetForCurrentView().CommandsRequested += MyApp_CommandsRequested; 
+3
source

Here is what I did:

PricacyStatementJavascript

0
source

All Articles