winrt xaml - Link with ms-windows-store: navigates to music player instead Windows Store -
i developing universal app. 1 of buttons should navigate user store page reviewing app. have following code:
void btnrate_tapped(object sender, tappedroutedeventargs e) { windows.system.launcher.launchuriasync(new uri("ms-windows-store:reviewapp")); }
according dev center link navigates review page of current app. me, link starting ms-windows-store opens in music player in windows phone , leads error page in windows. why that? hint how fix that? in regards hint
for works, have :
- associate app store,
- have @ least version of app published/available through store.
i highly recommend use version providing appid :
ms-windows-store:reviewapp?appid=[app id]
regards
Comments
Post a Comment