Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I installed the latest version of SDK (r21) and ADT 21.0.0. I tried a simple code and it works well but now i get a warning in the logcat that did not appear in the previous versions.

Unexpected value from nativeGetEnabledTags: 0

I googled it and i found this link.

I am unsure what it means. Your suggestions would help.

share|improve this question
24  
it means there's a bug in the latest SDK. make sure and star the issue to vote for it getting fixed. – Jeffrey Blattman Nov 16 '12 at 16:21
I have the same problem, should I downgrade the application ? – menuka devinda Jan 3 at 7:58

4 Answers

up vote 253 down vote accepted

I just ran into this problem, too. As a workaround I'm filtering the LogCat output with the following expression on the by Log Message field of the filter:

^(?!.*(nativeGetEnabledTags)).*$ 

Otherwise it is so spammed it's almost useless.

share|improve this answer
1  
Very useful, thanks! – sabadow Nov 22 '12 at 8:13
will you please tell me how to write this in Log. – Hardik Vora Dec 3 '12 at 14:26
37  
Goto your Logcat, and in the Saved Filters part, click on Edit selected logcat filter. There in the by Log Message field enter ^(?!.*(nativeGetEnabledTags)).*$. If Saved Filters is not visible then click on Display saved filters view in the Logcat. – Laksh Dec 3 '12 at 14:37
+1 : Nice workaround until it's fixed. – Peter K. Jan 18 at 14:06
This is a nice workaround for those of us using Intel images (as opposed to ARM, where this is supposed to be fixed) – MattD Apr 18 at 20:05

It's a bug in the emulator System Image for API 17.

At the moment, your workarounds are the following:

If you DON'T need API level 17

  • Use an emulator with API 16 (or lower).

If you DO need API level 17

  • Use a real device: Nexus 4, Nexus 7, Nexus 10.
  • Use the LogCat filter suggested by Hendrik. You'll have to edit every single filter you have, though (If you want to fix them all).
share|improve this answer
1  
I use Nexus 7 Real Device, but the bug still appears in Logcat... Hendrik's workaround is the best for time being.. – Laksh Jan 24 at 19:02
Same with a Nexus 4 and a Galaxy Nexus with 4.2.1. Though workaround is somewhat limited: other logs tend to disappear rather quickly. – 3c71 Jan 30 at 16:16
It seems that those real devices also have the buggy system image. I guess that your only workaround in that case in the log filter. – Chinaski Jan 31 at 9:58

The link which you referred to has the answer. It is a bug introduced in the latest revision of the tools. In the followup comments you can read that a google representative says a fix is on the way.

share|improve this answer

Update the ARM EABI v7a System Image from Android SDK Manager and the warning wont be seen any more .. !! :)

share|improve this answer
Has no effect, don't bother – Adam Mar 17 at 21:30
It has a effect! After the System Image Update, the bug is not seen. If there's no effect in your case, then also try updating your adt plugin and android sdk. – Laksh Mar 18 at 5:22
6  
I still see this in the intel image myself. – Kevlar Mar 21 at 2:02
1  
Updating the ARM EABI m7a System Image worked for me. Thank you! – TrippinBilly Apr 4 at 23:58
3  
This is not a solution for Intel image. ARM EABI is not for Intel, obviously. – Petr Gladkikh May 1 at 4:11
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.