I want to know how to create fat AAR file in android studio.
For example I have project A as an Android library (.AAR) , which is dependent on 2 local modules projects M1 and M2 (included as
dependencies {
compile project (m1) ...."
in build.gradle of library project A).
My questions are,
Q1. When I'm generating the .aar file of library A then how to include m1 and m2 inside the .aar file?
Q2. How to tell project B (android application which is including A.aar as dependency) to compile JCenter dependencies being used by m1 and m2?