What's the replacement for MarketplaceReviewTask in Windows Phone 8.1 Universal Apps

win-universal-app, windows-phone-8.1

Solution

await Windows.System.Launcher.LaunchUriAsync(
    new Uri("ms-windows-store:reviewapp?appid=" + CurrentApp.AppId));

this is good!

Problem

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?

Original source

Related problems