Reputation: 2225
In my build.gradle
, I have
android {
flavorDimensions "first", "second"
productFlavors {
a {
dimension "first"
}
...
}
How can I get the list of flavorDimensions
in the same order that gradle will use when creating the combinations of flavors?
Upvotes: 1
Views: 1493