Android 中的 Flurry Analytics 教程?

发布于 2024-09-05 09:52:40 字数 1539 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

十年九夏 2024-09-12 09:52:40

其实很简单。

1 - 前往 flurry.com 并注册您的应用程序,这将生成一个唯一的跟踪代码。

2 - 下载 FlurryAgent jar 并将其添加到您的项目库中。如果您使用的是 Eclipse,请右键单击项目文件夹,选择属性,选择 Java 构建路径,然后选择添加外部 JAR...

3 - 将 android.permission.INTERNET 添加到 AndroidManifest.xml。

4 - 从活动的 onStart() 和 onStop 方法添加对 Flurry 代理的调用。

注意:将下面的 ID 替换为您的唯一跟踪代码。

public void onStart()
{
   super.onStart();
   FlurryAgent.onStartSession(this, "9GKQD4EBX123FEP6874H");
   // your code
}

public void onStop()
{
   super.onStop();
   FlurryAgent.onEndSession(this);
   // your code
}

就是这样 !

https://developer.yahoo.com/flurry/#get-started

It's actually really simple.

1 - Head to flurry.com and register for your app, which will generate a unique tracking code.

2 - Download and add the FlurryAgent jar to your project libraries. If you're using Eclipse, right-click your project folder, select properties, select Java Build Path, and choose Add External JARs...

3 - Add android.permission.INTERNET to your AndroidManifest.xml.

4 - Add a call to the Flurry agent from the onStart() and onStop methods of your activities.

Note: replace the ID below with your unique tracking code.

public void onStart()
{
   super.onStart();
   FlurryAgent.onStartSession(this, "9GKQD4EBX123FEP6874H");
   // your code
}

public void onStop()
{
   super.onStop();
   FlurryAgent.onEndSession(this);
   // your code
}

That's It !

https://developer.yahoo.com/flurry/#get-started

南风起 2024-09-12 09:52:40

您可以使用以下方法(仅在会话期间)报告其他数据:

FlurryAgent.logEvent(String eventId)
FlurryAgent.logEvent(String eventId, boolean timed)
FlurryAgent.logEvent(String eventId, Map<String, String> parameters)
FlurryAgent.logEvent(String eventId, Map<String, String> parameters, boolean        timed)

教程:

http://www.opensourceforu.com/2011/01/setting-up-analytics-for-your-android-app/

http://abibrothers.blogspot.in/2012/10/flurry-analytics.html

You can use the following methods (during a session only) to report additional data:

FlurryAgent.logEvent(String eventId)
FlurryAgent.logEvent(String eventId, boolean timed)
FlurryAgent.logEvent(String eventId, Map<String, String> parameters)
FlurryAgent.logEvent(String eventId, Map<String, String> parameters, boolean        timed)

Tutorials :

http://www.opensourceforu.com/2011/01/setting-up-analytics-for-your-android-app/

http://abibrothers.blogspot.in/2012/10/flurry-analytics.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文