I\'ve looked everywhere and just can\'t find a way to launch the Rate and Review from my app. Does anyone know how to launch this task on the new Windows Phone 8.1?
There is no direct replacement of MarketplaceReviewTask
. Now it works like this - by using LaunchUriAsync wit appropriate Uri - described at 'MSDN - Link to your app in the Store':
to review the app you can use:
await Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:reviewapp?appid=[app ID]"));
// or simply for the current app:
await Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:reviewapp"));
At the link above (MSDN) you find also Uri structure to navigate to details page and search for specified content in the store.
Note also that Windows Phone 8.1 has backward compatibility with WP 8.0, therefore all URI schemes for launching built-in apps work. So you can also use them like this:
to review the App:
await Windows.System.Launcher.LaunchUriAsync(new Uri(@"zune:reviewapp?appid=app" + YourAppID));
to see details Page of the App:
await Windows.System.Launcher.LaunchUriAsync(new Uri(@"zune:navigate?appid=[app ID]"));