Android Studio: developing common java libraries to be shared among apps

Viewed 252

I have been researching through SO and seen much discussion about linking an app to a library, but in all cases (that I have found) the libraries are imported into the app.

As I understand it, importing copies the library into the App. In our case, we have several common java source libraries (L1, L2, etc) that are under active development and we want several Apps (A1, A2, etc) to reference these libraries. This means the libraries cannot be imported/copied to the Apps, since the libraries are changing too often.

The libraries have been created as separate Android Projects (we tried creating a Module/Android Library, but that was no better). We are using Android Studio for our IDE.

How do I go about linking without copying the libraries into a project? Thanks.

3 Answers
Related