Hi Team ,
I have a Android Library Project .
I want to add a JAR downloaded from a nexus repository as part of the Library’s output (AAR’s “/libs/” folder).
(https://developer.android.com/studio/projects/android-library.html#aar-contents)
How can i achieve this ? How can i tell my Library’s assemble task to pick the compile dependency and package along with it’s other outputs .
This is needed because we are releasing this to our customers and we want their integration effort to be very simple . Hence want to add our internal library dependencies as part of our AAR itself .
Basically as mentioned in the anotamy of AAR (https://developer.android.com/studio/projects/android-library.html#aar-contents)
I want to add a jar inside “/libs/.jar”
Please let me know a way to do that .
Thanks for the help in advance .