Flurry + PhoneGap 3.1.0使用github.com/jfpsf/flurry-phonegap-plugin

时间:2013-12-06 10:18:12

标签: android jquery-mobile cordova flurry

我正在开发适用于Android的PhoneGap 3.1.0应用。我添加了Flurry插件(https://github.com/jfpsf/flurry-phonegap-plugin)并按照说明完成了所有操作。 会话有效,但事件没有!这是一个更新的jfpsf插件分支(参见注释) - http://www.mooreds.com/wordpress/archives/1311/comment-page-1#comment-4346

我正在使用Android,PhoneGap 3.1.0和JQM。起初我用这个:

Flurry.startSession(‘BRN**********8PV’);

它有效,因为我在乱舞中看到了会话数据! 然后我试着添加这个:

Flurry.logPageView();

2.1 Flurry.logEvent(‘Footer navigation’);
2.2 or Flurry.logEventWithParameters(‘Footer navigation’, {button: “Done”});
2.3 or Flurry.logEventWithParameters(‘Footer navigation’, ‘{button: “Done”}’);

但它们都不起作用,因为我在Flurry中看不到任何数据。 我唯一看到的是事件日志会话:

Session Time
Version
Details
12/02/13 13:23:18 +0700
1.3.5 (Android)
1) uncaught

1 个答案:

答案 0 :(得分:2)

不,我知道为什么没有事件。 您需要将此添加到您的活动中: @Override protected void onStop() { super.onStop();
FlurryAgent.onEndSession(this); }
只有在onEndSession()之后才会记录您的事件。