androidbuild.gradleandroid-flavordimension

How can I get the list of flavor dimensions in build.gradle?


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?


Solution

  • It's available as an ArrayList from android.flavorDimensionList.