I have two applications: one for android and one for Blackberry, and I want to share some common code between two applications.
I have a folder structure as follows ...
project
android
.metadata (eclipse workspace)
project
(android specific project folder layout)
blackberry
.metadata (eclipse workspace)
project
(blackberry specific project folder layout)
project.core
src
(just source files common to each project above)
I just want to reference the external source folder (using relative paths) from two internal projects. Eclipse does not seem to like this setting because it prefers the source folders to be children of the workspace folder. For other reasons, I cannot share a common workspace between BlackBerry and Android.
Is there any way to do this?
source
share