Disable context sync telecom code by default

Bug: 281069627
Test: n/a
Change-Id: I915ccb0b02bd76ea975a94c2e02e4dfc5ba27724
This commit is contained in:
Christine Franks
2023-05-05 17:00:22 +00:00
parent 1840acdefa
commit 97a17efb34

View File

@@ -31,10 +31,10 @@ public class CompanionDeviceConfig {
public static final String ENABLE_CONTEXT_SYNC_TELECOM = "enable_context_sync_telecom";
/**
* Returns whether the given flag is currently enabled, with a default value of {@code true}.
* Returns whether the given flag is currently enabled, with a default value of {@code false}.
*/
public static boolean isEnabled(String flag) {
return DeviceConfig.getBoolean(NAMESPACE_COMPANION, flag, /* defaultValue= */ true);
return DeviceConfig.getBoolean(NAMESPACE_COMPANION, flag, /* defaultValue= */ false);
}
/**