I have this code but even I run `release` it still have the `.staging` suffix, anyone have some idea...
t
I have this code but even I run
release
it still have the
.staging
suffix, anyone have some idea why?
Copy code
buildTypes {
    debug {
        productFlavors.all { flavor ->
            switch (flavor.name) {
                case "gms":
                    applicationIdSuffix ".staging"
                    break
                case "gmsBundle":
                    applicationIdSuffix ".staging"
                    break
                case "hms":
                    applicationIdSuffix ".staging.hw"
                    break
            }
        }
    }
s
Is this question specific to Kotlin or is it a general Gradle question? There is a separate Gradle community slack
t
To Gradle, thanks for the link!
v
More to Android than Gradle That is more something specific to Android Gradle Plugin