logging - How to disable logs from external APIs in Android -


i have cocos2d-x project , wish disable logs external jars i've attached, flurry pushwoosh, there many external api's. there way remove logs these?

i tried setting, android:debuggable="false" in androidmanifest.xml, no use,

also in proguard-project.txt, set,

-assumenosideeffects class android.util.log {     public static *** d(...);     public static *** w(...);     public static *** v(...);     public static *** i(...); } 

but still in release build, logs being seen. on great!


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -