How can I determine if an action has been completed successfully.
For instance
I have popups asking my users to share my app.
Once they have shared it a number of times I don't want to keep asking them to share.
However, I also don't want them to pretend share, that is, open the share dialog the required number of times and close it each time without sharing.
How can I determine that the action undertaken by the user was actually completed.
All I want to know is if the third party app has been started. I'll have to hope that they finished the action, but at least I know that they started it.
Thanks
something like
if StartActivity(Intent) then
user started activity
else
user just looked
end if