A combination of product flavors for a variant, each belonging to a different flavor dimension.
Constructor and description |
---|
ProductFlavorCombo
(T... flavors) Create a ProductFlavorCombo. |
ProductFlavorCombo
(Iterable<T> flavors) |
Type | Name and description |
---|---|
static List<ProductFlavorCombo<S>> |
createCombinations(List<String> flavorDimensions, Iterable<S> productFlavors) Creates a list containing all combinations of ProductFlavors of the given dimensions. |
List<T> |
getFlavorList() |
String |
getName() |
Create a ProductFlavorCombo.
flavors
- Lists of ProductFlavor.Creates a list containing all combinations of ProductFlavors of the given dimensions.
flavorDimensions
- The dimensions each product flavor can belong to.productFlavors
- An iterable of all ProductFlavors in the project..