Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

logcat filled with message "Unexpected value from nativeGetEnabledTags: 0" - how to get rid of this? [duplicate]

Possible Duplicate:
Unexpected value from nativeGetEnabledTags: 0

I have just installed the latest version of SDK (r21) and ADT 21.0.0. I shifted my project from the eclipse, I was using previously to the newer version. After shifting the project i clicked on the Run button to test the application, and suddenly i found that the whole logcat was filled with the message

Unexpected value from nativeGetEnabledTags: 0

I just 10 minutes the number of this kind of messages reached more than 10,000 and i am fed up with this. Please tell me how can i remove this message from appearing in the logcat. And i want to stop this message from appearing as well

Skipped 33 frames! The application may be doing too much work on its main thread.

Please help.

like image 306
android_newbie Avatar asked Nov 26 '12 10:11

android_newbie


1 Answers

Check this answer: Unexpected value from nativeGetEnabledTags: 0

Add this filter to the LogCat: ^(?!.*(nativeGetEnabledTags)).*$

It is a bug introduced in the latest revision of the tools... Google is working on a fix on the next version.

like image 107
neteinstein Avatar answered Sep 22 '22 13:09

neteinstein