Submit trial version of WP7 application

I wrote a WP7 application that includes source code for both the trial version and the full version, for example,

if (App.IsTrial){ // show trial mode }else{ // show full mode } 

This means that the trial version and the full version are in the same XAP file. When I send the application to the market, I send each version separately or send once for both versions.

+6
source share
2 answers

You will send it once. Windows Phone licensing will work if the application is to be run as a trial version or in full version.

http://msdn.microsoft.com/en-us/library/ff967554(v=vs.92).aspx

+5
source

You only need to send a separate version of the assembly.

On the View page, which allows you to set the price of your application, you will find the Allow Trial Versions box. Check this box.

+1
source

Source: https://habr.com/ru/post/910189/


All Articles