乱舞4.2.0不工作为Android [英] Flurry 4.2.0 not working for Android

查看:211
本文介绍了乱舞4.2.0不工作为Android的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我感兴趣的是在我的应用程序中使用乱舞。
我已经实现在文件中提到的乱舞4.2.0。
在logcat中得到如下:


  

W / FlurryAgent(28503):FlurryDataSender:报告
  98ef36e7-8de3-4f37-bb3c-077a95582301发送。 HTTP响应:200


但无法追踪上乱舞仪表盘什么。

下面是code我使用。

  @覆盖
保护无效调用onStart(){    super.onStart();
    FlurryAgent.onStartSession(这一点,XXXXXXXXXXXXXXXXXXXX);
    FlurryAgent.setLogEnabled(真);
    FlurryAgent.setLogEvents(真);
    FlurryAgent.setLogLevel(Log.VERBOSE);
    FlurryAgent.logEvent(我的事件);
}@覆盖
保护无效的onStop(){    super.onStop();
    FlurryAgent.onEndSession(本);
}


解决方案

乱舞集成反射不会立竿见影。

这需要24小时左右,以反映乱舞仪表盘的变化。

在这里查看类似的答案:

希望这有助于。

I am interested in using flurry in my application. I have implemented the flurry 4.2.0 as mentioned in documents. and getting following in logcat:

W/FlurryAgent(28503): FlurryDataSender: report 98ef36e7-8de3-4f37-bb3c-077a95582301 sent. HTTP response: 200

But unable to trace anything on flurry dashboard.

Here is the code i am using.

@Override
protected void onStart() {

    super.onStart();
    FlurryAgent.onStartSession(this, "XXXXXXXXXXXXXXXXXXXX");
    FlurryAgent.setLogEnabled(true);
    FlurryAgent.setLogEvents(true);
    FlurryAgent.setLogLevel(Log.VERBOSE);
    FlurryAgent.logEvent("My Event");
}

@Override
protected void onStop() {

    super.onStop();
    FlurryAgent.onEndSession(this);
}

解决方案

The Flurry Integration reflection won't be immediate.

It takes around 24 hours to reflect the changes on Flurry Dashboard.

Check similar answers here :

Hope this helps.

这篇关于乱舞4.2.0不工作为Android的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆