Reputation: 4024
I need to create trial experience in my WP8 app. What i want to clarify is that when i use the LicenseInformation.IsTrial() method in Release mode in the Emulator it returns false as in the app is in Full mode. Is this correct? And when i use this LicenseInformation.IsTrial() method should i always check to see if the internet connectivity is available before calling the method. What happens if i don't check for internet connectivity when the app is in the market? What value will it return then? Thanks in advance.
Upvotes: 0
Views: 110
Reputation: 3219
Yes, the IsTrial
method always returns false when you are running in the emulator. have alook at How to: Test and Debug Your Trial Application for Windows Phone on MSDN for how to debug your trial application.
Internet connectivity is not required, WP manages the whole trial thing for you. I wonder where you heard about this.
Upvotes: 1