Analytics

Have feedback or questions on this section? Just click the Help tab on the right side of your screen.

Analytics/GettingStarted/Android


STEP 1: Basic Setup in 5 minutes

You can gain deep insight into your customer's behavior very quickly and with little effort using Flurry's Analytics service.

1. Download the Flurry Android SDK
2. Add the FlurryAgent.jar to your classpath
3. Configure you AndroidManifest.xml to have access to the Internet and optionally location
4. Incorporate the following three lines of Flurry code:

import com.flurry.android.FlurryAgent;
 
@Override
protected void onStart()
{
	super.onStart();
	FlurryAgent.onStartSession(this, "YOUR_API_KEY");
}
 
@Override
protected void onStop()
{
	super.onStop();		
	FlurryAgent.onEndSession(this);
}


Those 4 steps will give you access to the features below (see Analytics Dictionary for details)

  • Sessions
  • Active Users
  • New Users
  • Session Length
  • Frequency of Use
  • Benchmarks
  • Page Views
  • Custom User Segments
  • Lifecycle Metrics
  • User Retention
  • Version Adoption
  • Cross-App Usage
  • Category Interests
  • Personas
  • Demographic Estimates
  • Time of Day Reporting
  • Geographic Usage
  • Language Metrics
  • Devices
  • Carriers
  • Firmware Versions

STEP 2: Understand user behavior through tracking Custom Events.