Friday, February 3, 2012

Flurry Agent

When we launch our applications we want to know about our application in current market that how it works, users comment, error reports,etc... Its a kinda getting feedback from users how they are evaluating our applications.It can be done with the help of Flurry.
Flurry ( actually Flurry Analytics ) gives you a lot more statistics on the users and on how they use your application.


Integration of Flurry:
  • Go to flurry.com and register for your app, which will generate a unique tracking code.
  • 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
  • Add android.permission.INTERNET to your AndroidManifest.xml (Required)  --  Required to send analytic data back to the flurry servers.
  • Set android.permission.ACCESS_COARSE_LOCATION orandroid.permission.ACCESS_FINE_LOCATION (optional) – If your application has location permissions, analytics will track where your application is being used. Without this, only country level location information will be available. (To disable detailed location reporting even when your app has permission, call FlurryAgent.setReportLocation(false) before calling FlurryAgent.onStartSession() and no detailed location information will be sent.)                                                                  
  •  Add a call to the Flurry agent from the onStart() and onStop methods of your activities.

3 comments:

Anonymous said...

Nice information regarding flurry

Raza Mehdi said...

it really helped.

Raza Mehdi said...

thanks