The Eclipse & Android SDK update is really buggy as of 07/12/2012

I just updated the eclipse and Android SDK now (12/07/2012), and it’s really a buggy, I have to constantly “clean the project” to get rid of simple errors, such as:

Syntax error, insert ";" to complete Statement 

Despite the fact that there is, obviously, a finale.

Does anyone else have this problem and know any fixes?

thanks

+8
android eclipse eclipse-plugin
source share
4 answers

FYI, this error was fixed in ADT 20.0.1.

+3
source share

If you click the error marker in the left field, there should be an option to clear all markers in the list of pop-up automatic corrections. Select it and press enter. He should take care of this if there is no real error in this line.

+2
source share

Look at the Type Column for your type of problem. If you see the “Android Lint Problem” there, although this is a Java error message, then you have encountered the error of the current Android Lint. You can simply click the “Delete all warnings” button to clear invalid errors (and you will get the correct errors again in the next build), or you can completely disable Android Lint, which I would not recommend.

0
source share

It seems to be related to android linter. As suggested, if you open the quick fix interface when you have a pointer to the problem by clicking the error marker on the left or pressing cmd + 1, you will see an option that says "clear all label tags", In any case, this is an annoying error to be resolved.

0
source share

All Articles