|
I want to configure a social viewer based app to show ads only if the app has not been purchased and not to alter the functionality or usability of the app in any other way.
Would this be the proper way to achieve this in Configuration.xaml?
<Config:ReaderConfiguration x:Key="Configuration"
FeedbackEmailAddress="me@mail.com"
FullFunctionalityInTrialMode="False" //Do not want to enable Full functionality
FullFunctionalityTrialModeLengthInDays="0" //Do not want to enable full functionality ever
TrialModeLengthInDays="9999" //Would like the app to display advertisement indefinitely unless purchased
TestMode="Disabled"
LinkShortener="BitLy">
Thank you for any input on this, I am having difficulty affirming this in my testing efforts.
-Paul
|