views:

249

answers:

1

Ive inherited some code which started out as an Android project but really is just an API to be used by other applications. Hence, the 'build' process usually just produces a JAR file. The problem Im having is that I get errors from the Android build tools in my console which seem to fire everytime I make a change to some files. How do I fix that?

Im using Eclipse 3.5 (Galileo).

+2  A: 
  • Check run configuration and remove any reference to the Android Sdk.
  • Create a new Java project and copy project files from the older Android project to the new Java one.
systempuntoout
The .project file is the one to replace. Also the .classpath file may need to be modified if it contains Android references.
Chris Nava