0 / 60 seg.

Given this code snippey from a build.gradle file, which choice is not a possible build variant?

android {
    ...
    defaultConfig{...}
    buildTypes{
    debug{...}
    releasae{...}
}
    flavorDimensions "environment"
    productFlavors {
        producation {...}
        staging {...}
    }
}