Skip to content

Instantly share code, notes, and snippets.

@Bisera
Last active December 17, 2015 23:29
Show Gist options
  • Save Bisera/5689308 to your computer and use it in GitHub Desktop.
Save Bisera/5689308 to your computer and use it in GitHub Desktop.
@Override
public void onStart()
{
super.onStart();
FlurryAgent.onStartSession(this, YOUR_API_KEY);
// Your code
}
@Override
public void onStop()
{
super.onStop();
FlurryAgent.onEndSession(this);
//Your code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment