0

我按照这个链接(https://github.com/jfpsf/flurry-phonegap-plugin)将flurry插件集成到phonegap iPhone应用程序中。

在链接中给出的集成后。我调用了flurry方法:

flurry.startSession('XYZ',function(){
                                                             alert('success session');
                                                             },function(){
                                                             alert('fail session');
                                                             });

                         flurry.logEvent('app logevent',function(){
                                         alert('success logEvent');
                                         },function(){
                                         alert('fail logEvent');
                                         });

没有给出任何回应。当应用程序通过单击主页按钮发送到后台并再次打开发生乱舞事件并完美运行的应用程序时。任何人都可以帮我解决这个问题。为什么当应用程序来自后台时,flurry 插件方法正在工作?

提前致谢。

4

1 回答 1

0
Please ensure that you press the home button before closing the app. This is required in order to complete the Flurry reporting lifecycle.

请阅读此 stackoverflow 帖子中的正确答案:在 alertView 中添加 Flurry

于 2013-05-28T15:38:45.753 回答