commit c95ba551586aa388a2a98ecefc7d84f49f7fb172
parent 368dc6bb33d835359508081759c60916c410cc50
Author: Jeff Boek <j@jboek.com>
Date: Wed, 29 Oct 2025 00:07:27 +0000
Bug 1996672 - Enable address sync for any user that has the address feature enabled r=android-reviewers,matt-tighe
Differential Revision: https://phabricator.services.mozilla.com/D270433
Diffstat:
2 files changed, 1 insertion(+), 17 deletions(-)
diff --git a/mobile/android/fenix/app/nimbus.fml.yaml b/mobile/android/fenix/app/nimbus.fml.yaml
@@ -943,22 +943,6 @@ features:
value:
enabled: false
- address-sync:
- description: Turns on address sync.
- variables:
- enabled:
- description: >
- Whether or not to turn on address sync.
- type: Boolean
- default: false
- defaults:
- - channel: nightly
- value:
- enabled: false
- - channel: developer
- value:
- enabled: true
-
suppress-sponsored-top-sites:
description: Suppress sponsored top sites for new users for 14 days.
variables:
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
@@ -1920,7 +1920,7 @@ class Settings(private val appContext: Context) : PreferencesHolder {
*/
var isAddressSyncEnabled by featureFlagPreference(
key = appContext.getPreferenceKey(R.string.pref_key_enable_address_sync),
- default = FxNimbus.features.addressSync.value().enabled,
+ default = true,
featureFlag = isAddressFeatureEnabled(appContext),
)