android - why i should add dependencies that in aar file to my project? -
i created android archive library aar
file have it's own dependency in it's gradle. use library in many projects of mine, why should add aar
dependency application dependencies? know benefit of using aar vs jar aar can have , hold it's own resources , dependencies.
the aar file doesn't contain nested (or transitive) dependencies , doesn't have pom file describes dependencies used library.
it means that, if importing aar file using flatdir
repo have specify dependencies in project.
you should use maven repository (you have publish library in private or public maven repo), not have same issue.
in case, gradle downloads dependencies using pom file contains dependencies list.
Comments
Post a Comment