I would like to use flurry and its features in my application. How can i register myself with flurry and how can i use it in my android application?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.. or use Gradle + Jcenter
compile 'com.flurry.android:analytics:6.2.0'3 – Add
android.permission.INTERNETto 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!