Skip to content

Instantly share code, notes, and snippets.

@Bisera
Created March 8, 2014 01:31
Show Gist options
  • Save Bisera/9423729 to your computer and use it in GitHub Desktop.
Save Bisera/9423729 to your computer and use it in GitHub Desktop.
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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment