Flurry initialization error with Android

我是研究僧i 提交于 2019-12-05 22:00:26

I was using the google services play for froyo but flurry requires Google Play Services 6+ as a build dependency.

I upgrade also my minSdkVersion from 8 (2.2.x) to 9 (2.3)

After this upgrade everything works fine.

Put these two lines on your Application's onCreate() method

    // configure Flurry
    FlurryAgent.setLogEnabled(false);

    // init Flurry
    FlurryAgent.init(this,FLURRY_API_KEY);

This is working perfectly fine for me. Just make sure you are using correct FLURRY_API_KEY. This Works for Analytics part.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!