Import Source Java Project In Android Project
Solution 1:
This is somewhat of a hack, but worked for my project:
- Add both Android project and plain Java project to workspace
- Go to properties for Android project -> Java Build Path -> Source
- Click Link Source, in "Folder name", make sure to select the root directory of the plain Java project's src tree
- Use a descriptive name for "Linked folder location", like "java_project_src".
- Press Finish and compile
This setup will compile the plain-java code as Dalvik bytecode. In my case, I had pure java code with very limited dependencies, but wanted to share the pure java code with non-Android projects, instead of separately maintaining these files in every project.
Solution 2:
I think you are talking about referencing other projects into the current project, if this is the case then you can do this by Right click on project, properties->Project Reference.
Solution 3:
You can link another projects to your current project. Right click on your main project, choose Build Path -> Configure Build Path...
In the dialog choose the Projects
tab, then click Add..
button. Now choose the project you want to link and click OK
. You'll now be able to use this project's sources inside your main project. Hope this helps.
Post a Comment for "Import Source Java Project In Android Project"