I followed this link (https://github.com/jfpsf/flurry-phonegap-plugin) to integrate flurry plugin in phonegap iPhone app.
After integration as given in the link. I called flurry methods:
flurry.startSession('XYZ',function(){
alert('success session');
},function(){
alert('fail session');
});
flurry.logEvent('app logevent',function(){
alert('success logEvent');
},function(){
alert('fail logEvent');
});
that are not giving any response. When app send to the background by clicking on home button and again open the app that flurry event occurred and works perfectly. Can anyone please help me for this. Why flurry plugin methods are working when app come from background?
Thanks in advance.