mirror of
https://github.com/UrbanApps/Armchair.git
synced 2026-01-14 14:23:25 +01:00
userDidSignificantEvent not working #53
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Arti3DPlayer on GitHub (Oct 30, 2016).
In
AppDelegate.swifti added:Then in my
ViewController:But pop up window never shown. What is wrong ? I'm using
swift 3version@coneybeare commented on GitHub (Oct 31, 2016):
Please place a debugger call and step through to determine at which point the plugin has determined your app is not ready for displaying a rating prompt.
@3adel commented on GitHub (Nov 6, 2016):
Any update on this? I am having the same issue with swift3 branch
@coneybeare commented on GitHub (Nov 7, 2016):
If you step through the logic, you will be able to see at which point the plugin determined the rating criteria have not been met.
@jeffvstudio commented on GitHub (Oct 23, 2018):
I had the same issue and found why is it:
Reason is because even you're not using some of the flags, they're set and have default values already, which means you have to set it as your convenience in order to make it work properly. I set my own values for these flags and got it working.
Look, this function is the one in the library which decides whether rate conditions have been met or not, so you can see for instance that if
daysUntilPrompt(default value of 30 btw) is not met yet bcz you just started testing your app today, it will return and you won't see the prompt, and so on with the remaining flags.Hope it helps!