Flurry 分析未报告 Android 上的任何更新
在我的应用程序中,我添加了快速分析,但即使添加了几天之后也是如此。我在仪表板上没有看到任何更新。任何人都可以帮助我解决这个问题吗?预先感谢,
public static void StartSession(Context context) {
FlurryAgent.onStartSession(context, CommonKeys.APIKey_FLURRY);
FlurryAgent.onEvent("App Started");
}
@Override
protected void onStart() {
// TODO Auto-generated method stub
super.onStart();
FlurryAgent.onStartSession(this, CommonKeys.APIKey_FLURRY);
}
@Override
protected void onStop() {
// TODO Auto-generated method stub
super.onStop();
FlurryAgent.onEndSession(this);
}
我在启动时调用以下行
BaseActivity.StartSession(getApplicationContext());
In my application i have added flurry analytic but even after days of adding it. i don't see any updates on the dashboard. could any one help me on this. thanks in advance,
public static void StartSession(Context context) {
FlurryAgent.onStartSession(context, CommonKeys.APIKey_FLURRY);
FlurryAgent.onEvent("App Started");
}
@Override
protected void onStart() {
// TODO Auto-generated method stub
super.onStart();
FlurryAgent.onStartSession(this, CommonKeys.APIKey_FLURRY);
}
@Override
protected void onStop() {
// TODO Auto-generated method stub
super.onStop();
FlurryAgent.onEndSession(this);
}
i am calling the below line on splash
BaseActivity.StartSession(getApplicationContext());
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经按照文档的建议完成了集成。我创建了一个
BaseActivity
,它将通过我的活动进行扩展。这段代码对我有用...来自 Flurry 的日志可以在 LogCat 中找到,它们应该如下所示:
I have done the integration as recommended by the documentation. I have created a
BaseActivity
that will be extended by my activities. This code works for me...Logs from Flurry can be found in your LogCat and they should look like this:
切勿将应用程序上下文传递给 FlurryAgent.onStartSession(),这一点非常重要。我记得,您应该只传递 Activity 或 Service 上下文。
It's very important you never pass an Application Context to FlurryAgent.onStartSession(). As I recall, you should only ever pass Activity or Service contexts.