fat-aar-android
fat-aar-android copied to clipboard
Way to exclude classes from the dependency
I've run into an issue where I cannot include one of the classes in the dependency and I need to remove it and replace with a version I have written myself (essentially a Noop).
It would be useful if I could do something like:
dependencies {
embed("my.upstream.dependency:version") {
removeClass 'my.upstream.dependency.ClassToRemove'
removeClasses 'my.upstream.dependency.subpackage.**'
}
}