Today my final project setup has an Android library dependency. That Android library dependency project is located in the same workspace as the final project.
I would like to export that library project with its SOURCES and ANDROID RESOURCES, into some archive, jar, apk, apklib, anything that would allow me to add that file as a dependency, and not be forced to include/checkout a project with its sources and resources into the workspace.
I know Maven kinda solve this, but that is not my goal, I'm trying to allow simple Eclipse Android project to be able to add the Android library as a dependency.
(I don't mind using the apklib Maven produces with a non Maven Android project in Eclipse, but I guess that would be meaningless...)
How can this be done?