Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
import com.flurry.android.FlurryAgent;
public class MyApplication extends Application {
public void onCreate() {
super.onCreate();
new FlurryAgent.Builder()
.withLogLevel(Log.VERBOSE)
.withLogEnabled(true)
.build(this, FLURRY_APIKEY);
//your code
}
}
@unidaysgraham

This comment has been minimized.

Copy link

unidaysgraham commented Nov 13, 2015

This needs updating to use FlurryAgent not Flurry - see gist https://gist.github.com/unidaysgraham/30de321fb8b9ea6c1f1f

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.