mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-06-12 02:04:38 -04:00
40 lines
1.7 KiB
Diff
40 lines
1.7 KiB
Diff
diff --git a/mobile/android/fenix/app/nimbus.fml.yaml b/mobile/android/fenix/app/nimbus.fml.yaml
|
|
index 8f6c6df..7a8db7e 100644
|
|
--- a/mobile/android/fenix/app/nimbus.fml.yaml
|
|
+++ b/mobile/android/fenix/app/nimbus.fml.yaml
|
|
@@ -549,7 +549,7 @@ features:
|
|
description: >
|
|
When the feature is enabled then microsurveys can be used.
|
|
type: Boolean
|
|
- default: true
|
|
+ default: false
|
|
|
|
set-as-default-prompt:
|
|
description: >
|
|
diff --git a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt
|
|
index 777a555948..e90227f9e3 100644
|
|
--- a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt
|
|
+++ b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt
|
|
@@ -2137,19 +2137,12 @@ class Settings(private val appContext: Context) : PreferencesHolder {
|
|
/**
|
|
* Indicates if the microsurvey feature is enabled.
|
|
*/
|
|
- var microsurveyFeatureEnabled by lazyFeatureFlagPreference(
|
|
- key = appContext.getPreferenceKey(R.string.pref_key_microsurvey_feature_enabled),
|
|
- default = { FxNimbus.features.microsurveys.value().enabled },
|
|
- featureFlag = true,
|
|
- )
|
|
+ var microsurveyFeatureEnabled = false
|
|
|
|
/**
|
|
* Indicates if a microsurvey should be shown to the user.
|
|
*/
|
|
- var shouldShowMicrosurveyPrompt by booleanPreference(
|
|
- appContext.getPreferenceKey(R.string.pref_key_should_show_microsurvey_prompt),
|
|
- default = false,
|
|
- )
|
|
+ var shouldShowMicrosurveyPrompt = false
|
|
|
|
/**
|
|
* Indicates if the Set as default browser prompt for existing users feature is enabled.
|