I have a top level android library module (containing res folder) dependent on other library sub modules(no res). I want to build a fat aar of the top level module which should include the jar of the sub modules as well as any other aar dependency which I mention in the build.gradle. Is this possible? how? I can give more info if needed.
Asked
Active
Viewed 2,343 times
3
-
just try this site here.. it contains some steps to build fat aar real time experience...http://androidjavaworld.blogspot.in/2016/12/android-studio-222-repeated-error_94.html – harikrishnan Feb 01 '17 at 05:39
1 Answers
1
Check out the fat-aar.gradle
script that does exactly this:
https://github.com/adwiv/android-fat-aar

Muzikant
- 8,070
- 5
- 54
- 88
-
7Unfortunately this project is no longer maintained - it is incompatible with latest android gradle plugin – michalbrz May 02 '17 at 21:11