In Eclipse it is possible to add a library project as a dependency to your Android project but maintain the library project and Android project in separate git repositories.
The idea is that you might have a library project that is constantly being built up with new features by a number of programmers and stored in its own repository. If I were to add this library project to a new Android Studio project I won't be able to update the library project with the latest changes because Android Studio makes a copy of the library project and places it into your Android project.
There must be some way to maintain the Android project and the library project separately in Android Studio. Has anyone managed to do this?