From 00ead7e31f97f1c5d90d2bb5fa7b5e82e3376646 Mon Sep 17 00:00:00 2001 From: Sebastian Kaspari Date: Fri, 23 Aug 2019 15:22:31 +0200 Subject: [PATCH] Issue #4873: Only build fennecProduction build types with GeckoView Beta. --- app/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 02057d1aa..568f5347d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -90,6 +90,7 @@ android { // | fenixNightly | ✅ | ✅ | Built with both, but only the "geckoNightly" one is published to Google Play // | fenixBeta | ❌ | ✅ | Fenix Beta ships with GV Beta // | fenixProduction | ❌ | ✅ | Fenix Production ships with GV Beta + // | fennecProduction | ❌ | ✅ | Fenix build to replace production Firefox builds // def flavors = flavors*.name.toString().toLowerCase() @@ -101,6 +102,10 @@ android { if (buildType.name == 'fenixProduction' && flavors.contains("geckonightly")) { setIgnore true } + + if (buildType.name == 'fennecProduction' && flavors.contains("geckonightly")) { + setIgnore true + } } testOptions {