I have three projects in my eclipse workspace:
EventKitchenCore
EventKitchenDesktop
EventKitchenAndroid
EventKitchenCore
contains
If all you want is to reference the Core projects code, then in Eclipse you can just reference this project from the Android project. (The 'library project' feature is only to Android library projects, you just have a normal Java project here, right?)
So in your Package Explorer you have all three (Core, Android and Desktop) projects. Right click EventKitchenAndroid
and select Properties. Choose Java Build Path -> Project tab and click the Add... button. Choose EventKitchenCore
. Go to the Order & Export tab and make sure the EventKitchenCore
project is checked and you're good to go. Any change to the source of EventKitchenCore is immediatedly available to the Android project.