Rate and review mechanism

first add
Code:
using Windows.ApplicationModel.Store;

then this
Code:
await Windows.System.Launcher.LaunchUriAsync(
                new Uri("ms-windows-store:reviewapp?appid=" + CurrentApp.AppId));
 
I mean that you get a popup after you have opened the app for the 5th time, that asks if you want to rate the app and if you press no you can give feedback.
 
You could write a Method with a counter for that count up to 5 and then display a message dialog. Else you could use ReviewNotifier search for it in NuGet.
 
You needn't to know the URL, just call
MarketplaceReviewTask task = new MarketplaceReviewTask();
task.Show();
This will navigates the user to the Review page.

I am showing this prompt on app start and record the date and time the prompt was displayed to Isolated Storage. Then it is not displayed for specific period of time (let's say a week) not to annoy the user with such prompt on each app start. Once he confirms the prompt he is navigated to the review page using the code above and I also record that he has provided the review not to prompt him at all.

Jiri
 

Trending Posts

Members online

Forum statistics

Threads
339,578
Messages
2,262,608
Members
428,760
Latest member
NirvaanGuilloux