AbiFilterSetSpec
A set of filters in a single direction: inclusion or exclusion.
Inclusion filters:
filters {
included {
byNames.add("foo.api.**")
annotatedWith.add("foo.PublicApi")
}
}
Exclusion filters:
```kotlin
filters {
excluded {
byNames.add("foo.Bar")
annotatedWith.add("foo.ExcludeAbi")
}
}
Content copied to clipboard
Since
2.1.20