From 35ae44ced767e979aacb20a4264cbca98f0043fb Mon Sep 17 00:00:00 2001 From: Colin Lee Date: Wed, 5 Jun 2019 10:48:10 -0500 Subject: [PATCH] [fenix] For https://github.com/mozilla-mobile/fenix/issues/3129: Add a production build type to Fenix (https://github.com/mozilla-mobile/fenix/pull/3149) --- app/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 80c0e7ac70..c887590b2d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -52,6 +52,9 @@ android { applicationIdSuffix ".beta" buildConfigField "boolean", "USE_RELEASE_VERSIONING", "true" } + production releaseTemplate >> { + buildConfigField "boolean", "USE_RELEASE_VERSIONING", "true" + } } variantFilter { // There's a "release" build type that exists by default that we don't use (it's replaced by "nightly" and "beta")