Today, my final setup has a dependency on the Android library. This Android library dependency project is located in the same workspace as the final project .
I would like to export this library project with its SOURCES AND SOURCES ANDROID RESOURCES , to some archive , jar, apk, apklib, anything that would allow me to add this file as a dependency, and not be forced to include / check the project with its sources and resources in the work area.
I know that Maven can solve this, but this is not my goal, I am trying to resolve a simple Eclipse Android project to add an Android library as a dependency.
(I don't mind using apklib Maven produces with an Android project without Maven in Eclipse, but I think that would be pointless ...)
How can I do that?
source
share