Merge "Remove .prod from the applicationIdSuffix in preparation for Play launch" into main

pull/1837/head
Don Turner 3 years ago committed by Gerrit Code Review
commit be61a4efb3

@ -16,8 +16,8 @@ enum class FlavorDimension {
// These two product flavors reflect this behaviour. // These two product flavors reflect this behaviour.
@Suppress("EnumEntryName") @Suppress("EnumEntryName")
enum class NiaFlavor(val dimension: FlavorDimension, val applicationIdSuffix: String? = null) { enum class NiaFlavor(val dimension: FlavorDimension, val applicationIdSuffix: String? = null) {
demo(FlavorDimension.contentType), demo(FlavorDimension.contentType, applicationIdSuffix = ".demo"),
prod(FlavorDimension.contentType, ".prod") prod(FlavorDimension.contentType, )
} }
fun Project.configureFlavors( fun Project.configureFlavors(

Loading…
Cancel
Save