Google APIs do not throw crunch error for Android

I just installed the Android 2.1 SDK in eclipse and created a project designed for the Google API: 7. Eclipse shows an error on the project icon, and the debug window shows this error

ERROR: Unknown command 'crunch' Android Asset Packaging Tool

After quite a lot of searching on Google, I still don't know how to fix this error. I already tried to clean the project.

+4
source share
2 answers

I think the problem has a common reason ==> Partial ADT Update

Check your repositories again and then the link

+1
source

This happened to me when I upgraded Eclipse from Helios to Indigo (on Windows XP)

The solution was to open the Android SDK Manager and install all the updates selected by default, especially I was on

  • Android SDK Tools rev 13
  • Android SDK rev 7 platform tools

These updates have been updated to

  • Android SDK Tools rev 14
  • Android SDK Platform Tools rev 8

My project, which targets 2.2, compiles and runs in debugging now without any problems (NB, I have all the SDKs installed, including 4.0, but you can target before the SDK)

+2
source

All Articles