Modify Settings to use new SIM call manager API

Mofify the telephony settings to query the SIM
call manager per subId, instead of using the
SIM call manager associated with the default
voice subscription ID.

Test: manual
Bug: 131627085
Merged-In: I4e481d74c1b2bf8944b3c973c074146136592900
Change-Id: Id3dd81618d122ddf4c2b24957b474908fdbf8818
diff --git a/src/com/android/phone/CallFeaturesSetting.java b/src/com/android/phone/CallFeaturesSetting.java
index 877e0b5..5a4026d 100644
--- a/src/com/android/phone/CallFeaturesSetting.java
+++ b/src/com/android/phone/CallFeaturesSetting.java
@@ -375,7 +375,8 @@
             prefSet.removePreference(mEnableVideoCalling);
         }
 
-        final PhoneAccountHandle simCallManager = mTelecomManager.getSimCallManager();
+        final PhoneAccountHandle simCallManager = mTelecomManager.getSimCallManagerForSubscription(
+                mPhone.getSubId());
         if (simCallManager != null) {
             Intent intent = PhoneAccountSettingsFragment.buildPhoneAccountConfigureIntent(
                     this, simCallManager);