From 5792acf44206eac3c4e22794defeb1a45d12f9aa Mon Sep 17 00:00:00 2001 From: Jonathan Almeida Date: Tue, 16 Jul 2019 08:13:27 -0400 Subject: [PATCH] No issue: Enable send tab in nightly legacy --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index e14e047fde..1ac4730565 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -265,7 +265,7 @@ android.applicationVariants.all { variant -> // ------------------------------------------------------------------------------------------------- // NB: flipping SEND_TAB_ENABLED flag back and worth is currently not well supported and may need hand-holding. // Consult with the android-components peers before changing. - buildConfigField 'Boolean', 'SEND_TAB_ENABLED', (buildType == "nightly" || isDebug).toString() + buildConfigField 'Boolean', 'SEND_TAB_ENABLED', (buildType == "nightly" || buildType == "nightlyLegacy" || isDebug).toString() buildConfigField 'Boolean', 'PULL_TO_REFRESH_ENABLED', (false).toString() }