We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 9 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
其实很简单。
1 - 前往 flurry.com 并注册您的应用程序,这将生成一个唯一的跟踪代码。
2 - 下载 FlurryAgent jar 并将其添加到您的项目库中。如果您使用的是 Eclipse,请右键单击项目文件夹,选择属性,选择 Java 构建路径,然后选择添加外部 JAR...
3 - 将 android.permission.INTERNET 添加到 AndroidManifest.xml。
4 - 从活动的 onStart() 和 onStop 方法添加对 Flurry 代理的调用。
注意:将下面的 ID 替换为您的唯一跟踪代码。
就是这样 !
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.
That's It !
https://developer.yahoo.com/flurry/#get-started
您可以使用以下方法(仅在会话期间)报告其他数据:
教程:
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:
Tutorials :
http://www.opensourceforu.com/2011/01/setting-up-analytics-for-your-android-app/
http://abibrothers.blogspot.in/2012/10/flurry-analytics.html