I have an a PAID app on the store. Now I would like to distribute another free(2 apps: 1 paid and 1 free). Obviously I would not recreate another project. you can do? on ios and android is direct by the project with the targets. you can on windows phone? i use Windows phone 8.1 silverlight
The same as on iOs and Android. Use Conditional compilation symbols
.
and then in code:
#if FREE_VERSION
TrialPanel.Visibility = Visibility.Visible;
#endif