Skip to content
Snippets Groups Projects
Commit 75972ca2 authored by Dan Ballard's avatar Dan Ballard
Browse files

fixup! Disable features and functionality

disable reengagement service
parent b80a9acc
No related branches found
No related tags found
1 merge request!38Bug 41846: Remove more useage of nimbus
......@@ -214,7 +214,7 @@ open class HomeActivity : LocaleAwareAppCompatActivity(), NavHostActivity {
OpenBrowserIntentProcessor(this, ::getIntentSessionId),
OpenSpecificTabIntentProcessor(this),
OpenPasswordManagerIntentProcessor(),
ReEngagementIntentProcessor(this, settings()),
//ReEngagementIntentProcessor(this, settings()),
)
}
......
......
......@@ -651,7 +651,7 @@ class Settings(private val appContext: Context) : PreferencesHolder {
var shouldUseCookieBanner by lazyFeatureFlagPreference(
appContext.getPreferenceKey(R.string.pref_key_cookie_banner_v1),
featureFlag = true,
default = { true /* cookieBannersSection[CookieBannersSection.FEATURE_SETTING_VALUE] == 1 */ },
default = { false /* cookieBannersSection[CookieBannersSection.FEATURE_SETTING_VALUE] == 1 */ },
)
var userOptOutOfReEngageCookieBannerDialog by booleanPreference(
......@@ -672,7 +672,7 @@ class Settings(private val appContext: Context) : PreferencesHolder {
)
val shouldShowCookieBannerUI: Boolean
get() = true // cookieBannersSection[CookieBannersSection.FEATURE_UI] == 1
get() = false // cookieBannersSection[CookieBannersSection.FEATURE_UI] == 1
/**
* Indicates after how many hours a cookie banner dialog should be shown again
......@@ -801,13 +801,13 @@ class Settings(private val appContext: Context) : PreferencesHolder {
)
val enabledTotalCookieProtection: Boolean
get() = /*mr2022Sections[Mr2022Section.TCP_FEATURE] ==*/ true
get() = /*mr2022Sections[Mr2022Section.TCP_FEATURE] ==*/ false
/**
* Indicates if the total cookie protection CRF feature is enabled.
*/
val enabledTotalCookieProtectionCFR: Boolean
get() = /* mr2022Sections[Mr2022Section.TCP_CFR] ==*/ true
get() = /* mr2022Sections[Mr2022Section.TCP_CFR] ==*/ false
/**
* Indicates if the total cookie protection CRF should be shown.
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment