Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SD HTTP RESPONSE CODE:200 error with Flurry

Tags:

android

flurry

  • I am using latest sdk of Flurry Analytics v3.2.2
  • But i got below error TOAST when i run my application .

    SD HTTP RESPONSE CODE:200

  • i don't know from where it comes and how. I goggled it but got nothing.

  • Please tell me if anyone got this type of error using Flurry analytic SDK and how to solve it.

like image 570
Dhruvil Patel Avatar asked Sep 27 '13 13:09

Dhruvil Patel


1 Answers

This Toast appear when you have enable logs on the version 3.2.2 :

        FlurryAgent.setLogEnabled(true);
        FlurryAgent.setLogLevel(android.util.Log.VERBOSE);

So, don't worry, when you are in release, just disable the logs of flurry.

like image 113
Aurélien Guillard Avatar answered Oct 02 '22 16:10

Aurélien Guillard