This question is locked. New answers and comments are not allowed.
Hi,
My Idea is to allow a base functionality in my app, but some feature should be disabled until the app is bought.
So I added the FeatureReminder to my app.
I tried to set the FeeUsageCount to null, 0 and 1, but no dialog is shown, when I call my "disabled" function.
When calling Notify(), no message is shown.
Testing for IsTrialExpired , value is always false.
So my questions:
- How I should implement it (Trial reminder should be shown after first use)?
- What are the init values for the reminder?
- What should I do, when the app is bought? Does the TrialFeauteReminder test the internal value IsTrail() ?
Thanks
Eric
My Idea is to allow a base functionality in my app, but some feature should be disabled until the app is bought.
So I added the FeatureReminder to my app.
I tried to set the FeeUsageCount to null, 0 and 1, but no dialog is shown, when I call my "disabled" function.
When calling Notify(), no message is shown.
Testing for IsTrialExpired , value is always false.
return new RadTrialFeatureReminder() { FeatureId = 1, AllowedTrialUsageCount = 1, // maximum number of app runs until trial is expired FreeUsageCount = 1, // number of app runs when no reminder will be displayed OccurrenceUsageCount = 1 // reminder will be displayed on every run after the free usage is over };So my questions:
- How I should implement it (Trial reminder should be shown after first use)?
- What are the init values for the reminder?
- What should I do, when the app is bought? Does the TrialFeauteReminder test the internal value IsTrail() ?
Thanks
Eric
