Problem statement
We need to deliver an android SDK in form of single AAR package wherein our code internally divided into various sub-modules and also has dependencies on external libs(AARs). I'm stucked in the way that how to package the modules in such a way that only single AAR is delivered which resolves the dependencies internally. Currently when the SDK code is assembled, it generates an AAR but that AAR doesn't include respective dependent modules and it hardly has a size in few KBs only.
Solutions tried
I have already explored the way it is achieved like mavenizing the project as mentioned on: https://www.survivingwithandroid.com/2014/05/android-guide-to-publish-aar-to-maven-gradle.html How to include JAR dependency into an AAR library
Kindly help to get build as single AAR.