How to create shared source folder across multiple projects in Eclipse?

不羁岁月 提交于 2019-12-04 23:55:06

问题


I've been looking at the Android + App Engine source code from a Google IO session (Android meet App Engine). They generate three projects, an Android project, a GWT interface, and an App Engine server project. All of these projects have a common source folder called shared where they can put their synchronized data classes that all parts of the app need to know about.

I'm wondering how to create that shared source folder in a general Eclipse project. How can I create a source folder in one project that's also available to and synced with other projects in Eclipse?

Edit
I'm not looking for how to do an Android Library project (I already use several of those for my apps). Android Libraries don't work for a general eclipse project, say an App Engine server side project.


回答1:


I am using Helios eclipse.

To create Source Folder

Navigate to your project in the package Explorer, right-click and select New, select Source Folder. Enter the folder name and click Finish.

If you want to use the source folder in any of your projects, then go to your project properties, click Java Build Path, go to Source tab, you can link the folder.




回答2:


The way to do this within Android is through use of a library project. Create one project as an Android library (properties->android->Is Library gets checked), and the others must have their property page updated to make use of the library.

Libraries have their code and resources pulled into projects that use the library. The library's manifest is ignored.



来源:https://stackoverflow.com/questions/6189426/how-to-create-shared-source-folder-across-multiple-projects-in-eclipse

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!