Abi Filter Set Spec
A set of filters in a single direction: inclusion or exclusion.
Inclusion filters:
filters {
include {
byNames.add("foo.api.**")
annotatedWith.add("foo.PublicApi")
}
}
Exclusion filters:
```kotlin
filters {
exclude {
byNames.add("foo.Bar")
annotatedWith.add("foo.ExcludeAbi")
}
}Content copied to clipboard
Since
2.2.0