Skip to content

Instantly share code, notes, and snippets.

@flurrydev
Created November 19, 2019 00:01
Show Gist options
  • Save flurrydev/4325b56f0f3ffa4945dcd66b79b0aa32 to your computer and use it in GitHub Desktop.
Save flurrydev/4325b56f0f3ffa4945dcd66b79b0aa32 to your computer and use it in GitHub Desktop.
import com.flurry.android.FlurryAgent
class MyApplication : Application() {
init {
FlurryAgent.Builder()
.withLogLevel(Log.VERBOSE)
.withLogEnabled(true)
.build(this, FLURRY_APIKEY)
//your code
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment