How to include an Android library module in another library?
问题 I am building an Android library that is packaged as an aar and distributed to 3rd party developers. The structure is pretty simple: project ---libraryA ---libraryB libraryA requires libraryB, which is why is has this in its gradle file: compile project(':libraryB') And settings.gradle has include ':libraryB', ':libraryA' But if I build the project as an aar it only includes libraryA. What am I missing? I read the responses to this: Android Studio how to package single AAR from multiple