I am using:
WinJS.Application.onsettings = function(e) {
e.detail.e.request.applicationCommands.append(Windows.UI.ApplicationSettings.SettingsCommand.accountsCommand);
var command = new Windows.UI.ApplicationSettings.SettingsCommand("Privacy", "Privacy Policy", function(){
Windows.System.Launcher.launchUriAsync(new Windows.Foundation.Uri("https://my.com/privacy"))
});
e.detail.e.request.applicationCommands.append(command);
}
To fill the settings pane. However, the "Privacy Policy" entry is always the top one, although its appended last to the applicationCommands array. I have seen the Mail & Weather apps having their private policy entry below the permissions and
rate&review entries. How to achieve that?