Correct default to match CarrierConfigManager
Test: manual; atest FrameworksTelephonyTests
Change-Id: I741f7665338f7e543fab9c20724d2f39b38b65fb
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java
index bdf66df..bb903a5 100755
--- a/src/com/android/phone/PhoneInterfaceManager.java
+++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -3384,10 +3384,7 @@
CarrierConfigManager configManager = new CarrierConfigManager(context);
PersistableBundle c = configManager.getConfigForSubId(subId);
boolean requireUtProvisioning = c.getBoolean(
- // By default, this config is true (even if there is no SIM). We also check to make
- // sure the subscription needs provisioning here, so we do not need to check for
- // the no-SIM case, where we would normally shortcut this to false.
- CarrierConfigManager.KEY_CARRIER_SUPPORTS_SS_OVER_UT_BOOL, true)
+ CarrierConfigManager.KEY_CARRIER_SUPPORTS_SS_OVER_UT_BOOL, false)
&& c.getBoolean(CarrierConfigManager.KEY_CARRIER_UT_PROVISIONING_REQUIRED_BOOL,
false);
boolean requireVoiceVtProvisioning = c.getBoolean(