Replace CallServiceSelectors with Subscriptions (3/3)
Remove CallServiceSelectors and replace them with comprehensive
support for Subscriptions as the means of selecting ways of making
phone calls. After this change, a ConnectionService is not a
semantically meaningful "way of making a call" -- it's more like the
mechanism whereby the Android system communicates with a 3rd party
process to ask for phone services. We anticipate each process having
only one ConnectionService.
Change-Id: I251c0b6f4106104d945b3723fa4da1081a06b8cd
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index eaa09fe..a2da689 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -553,24 +553,10 @@
<action android:name="android.telecomm.CallServiceProvider" />
</intent-filter>
</service>
- <service android:name="com.android.services.telephony.TelephonyCallServiceSelector"
- android:singleUser="true">
- <intent-filter>
- <action android:name="android.telecomm.CallServiceSelector" />
- </intent-filter>
- </service>
<service
android:singleUser="true"
- android:name="com.android.services.telephony.GsmConnectionService"
- android:label="@string/gsm_connection_service_label">
- <intent-filter>
- <action android:name="android.telecomm.CallService" />
- </intent-filter>
- </service>
- <service
- android:singleUser="true"
- android:name="com.android.services.telephony.CdmaConnectionService"
- android:label="@string/cdma_connection_service_label">
+ android:name="com.android.services.telephony.PstnConnectionService"
+ android:label="@string/pstn_connection_service_label">
<intent-filter>
<action android:name="android.telecomm.CallService" />
</intent-filter>