Skip to content Skip to sidebar Skip to footer

Convert Android Project To 'regular' Java Project Inside Eclipse?

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 f

Solution 1:

  • 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.

Solution 2:

You should copy files: .classpath and .project from other working java project. Next you should edit .project with text editor and change SampleProject to YourProjectName


Post a Comment for "Convert Android Project To 'regular' Java Project Inside Eclipse?"