How to use flurry in an application?

后端 未结 3 860
时光说笑
时光说笑 2020-12-03 04:37

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

相关标签:
3条回答
  • 2020-12-03 05:19

    Steps by steps use Flurry Analytics.

    http://support.flurry.com/index.php?title=Analytics/GettingStarted/TechnicalQuickStart/Android

    0 讨论(0)
  • 2020-12-03 05:26

    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)
    
    0 讨论(0)
  • 2020-12-03 05:44

    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.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!

    0 讨论(0)
提交回复
热议问题