adwiv / android-fat-aar

Gradle script that allows you to merge and embed dependencies in generted aar file
The Unlicense
1.46k stars 435 forks source link

How to merge excluded dependencies declared in embedded modules? #17

Closed b95505017 closed 7 years ago

b95505017 commented 8 years ago

In publish.gradle only contain ResolvedDependency Map<String, ResolvedDependency> depList = new LinkedHashMap<>();

It doesn't contain exclude rules, how to I include those rules in my embedded modules? Thanks.

adwiv commented 7 years ago

Gradle dependency system is too complex and I don't have much experience with it.

The configurations object includes a getExcludeRules method. You may try to use it and if it works submit a pull request :)

Cheers.