Base data representing how an APK should be split for a given dimension (density, abi).
Type | Name and description |
---|---|
void |
exclude(String... excludes) |
Set<String> |
getApplicableFilters(Set<String> allFilters) Returns a list of all applicable filters for this dimension. |
Set<String> |
getExclude() Collection of exclude patterns. |
Set<String> |
getInclude() Collection of include patterns. |
void |
include(String... includes) |
boolean |
isEnable() Whether to split in this dimension. |
void |
reset() Resets the list of included split configuration. |
void |
setEnable(boolean enable) |
void |
setExclude(List<String> list) Collection of exclude patterns. |
void |
setInclude(List<String> list) |
Returns a list of all applicable filters for this dimension. The list can return null, indicating that the no-filter option must also be used.
allFilters
- the available filters, excluding the no-filter option.Whether to split in this dimension.
Resets the list of included split configuration. Use this before calling include, in order to manually configure the list of configuration to split on, rather than excluding from the default list.
Collection of exclude patterns.