1

Last night when I'm developing an Android app using Eclipse, the computer suddenly out of order and showed a blue screen.

After restarting, open Eclipse, and when I continue the development, I found out that Eclipse will not show any error message even if I type anything wrong.

For example, I type $^&((^(*&$GFKGHlkgvfekigfe in the activity, Eclipse shows nothing, just like the code is correct LOL

How can I re-enable the auto debug function? Thanks.

Kit Ng
  • 993
  • 4
  • 12
  • 24

3 Answers3

1

Or try to run Eclipse in clean mode. Please see the following discussion: How to run eclipse in clean mode

Community
  • 1
  • 1
Blehi
  • 1,990
  • 1
  • 18
  • 20
0

You able to Automatic Build by

  1. Go Eclipse project menu
  2. Choose Build Automatically
Chris Missal
  • 5,987
  • 3
  • 28
  • 46
Md Abdul Gafur
  • 6,213
  • 2
  • 27
  • 37
  • This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. – Linger Dec 06 '12 at 20:45
  • @Linger, I think it does. Re-enabling automatic builds will allow Eclipse to detect syntactically incorrect errors as the user is writing the code. – Alexander Lucas Dec 06 '12 at 21:57
  • @Alexander, you are right. My comment was from before the edit. Now that I have read it after the edit it makes sense and should work. – Linger Dec 06 '12 at 22:05
0

Try cleaning your project. In Eclipse, select your root project folder in the project navigator, then go to Project > Clean... > OK. You can also clean all projects by selecting the Clean all projects radio button in the clean dialog.

John Leehey
  • 22,052
  • 8
  • 61
  • 88