Remove applicationIdSuffix from demo variant, add it to prod instead

Change-Id: I890beefbd79de04a9f5fa1153eb8b1ab3ee6eaf4
pull/421/head^2
Don Turner 3 years ago
parent 8e39b11b2a
commit 2dd2f83026

@ -14,8 +14,8 @@ enum class FlavorDimension {
// purposes, or from a production backend server which supplies up-to-date, real content. // purposes, or from a production backend server which supplies up-to-date, real content.
// These two product flavors reflect this behaviour. // These two product flavors reflect this behaviour.
enum class Flavor (val dimension : FlavorDimension, val applicationIdSuffix : String? = null) { enum class Flavor (val dimension : FlavorDimension, val applicationIdSuffix : String? = null) {
demo(FlavorDimension.contentType, ".demo"), demo(FlavorDimension.contentType),
prod(FlavorDimension.contentType) prod(FlavorDimension.contentType, ".prod")
} }
fun Project.configureFlavors( fun Project.configureFlavors(

Loading…
Cancel
Save