Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 961
LPains Avatar asked Apr 10 '14 00:04

LPains


People also ask

Can I update my Windows Phone 8.1 to 10?

The Windows Phone 8.1 to Windows 10 Mobile upgrade uses an "opt-in" or "seeker" model. An eligible device must "opt-in" to be offered the upgrade. For consumers, the Windows 10 Mobile Upgrade Advisor app is available from the Windows Store to perform the opt-in.

Why are my Windows 8.1 apps not working?

Why Windows 8 apps will not open. This problem is usually caused by corrupt files. This can be corrupt application files that are necessary to launch apps, or even a corrupt user account. Corrupt application files will terminate applications, while corrupt user accounts will not allow permission to launch apps.

What app Store do Windows phones use?

Windows Phone Apps - Microsoft Store.


1 Answers

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

this is good!

like image 61
user3496220 Avatar answered Nov 17 '22 00:11

user3496220