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
Baca Juga
- November 1st 2020 / 'account Hold' : Is It Mandatory To Display An Explanatory Message To 'account Hold' Users?
- How To Import An Existing Android Project Into Another Android Project
- How To Draw Brushes Or Shape Using Path When Moving Finger Fast In Andorid Canvas (generate Missing Point When User Move Finger Fast)
Post a Comment for "Convert Android Project To 'regular' Java Project Inside Eclipse?"