What's the best way to include a non-static library project in Android Studio?
I've developed a library that is used by multiple projects and it is currently under active development. In Eclipse I can continue developing and include it in multiple projects just by being in the same workspace, is there an equivalent way to do it in AS?
When I make changes to the library source I don't want to have to keep copying the source manually into modules of all the dependent projects, and putting it on Maven is not an option. The library and all dependent projects are hosted in SVN.
Any ideas or suggestions? Thanks!