I'm making an Android Library which I need to share with some clients. This library includes some .jar libraries which are private and which I can't share. These are in a private maven repo which is used in the Android library.
When I compile the aar I want these remote private maven repos to be downloaded and included in the aar like in an apk.
By adding these jars to the lib folder I get the desired effect. This however adds more labour on our part and makes a mess of keeping these libraries up to date through out all our projects.
This question has been asked before like here & here. Its 2017 and feels like quite a vital option. Does anyone know of a work around to force gradle and android studio to include remote dependencies which an .aar can't live without?