Skip to content

Instantly share code, notes, and snippets.

@masakiplus
Created October 21, 2012 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masakiplus/3927063 to your computer and use it in GitHub Desktop.
Save masakiplus/3927063 to your computer and use it in GitHub Desktop.
flurry sdk android
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