summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorSantos Cordon <santoscordon@google.com>2014-01-29 11:07:46 -0800
committerBaligh Uddin <baligh@google.com>2014-02-20 15:06:46 -0800
commit166aa8d5aa00d343d83226e110ea0be4e1577ba9 (patch)
tree1058d3e527d6bc4401631031a653abb2753b7138 /AndroidManifest.xml
parent639b4d8e01dd36799487c7b91f5b295f28e2c9a5 (diff)
downloadpackages_apps_InCallUI-166aa8d5aa00d343d83226e110ea0be4e1577ba9.tar.gz
packages_apps_InCallUI-166aa8d5aa00d343d83226e110ea0be4e1577ba9.tar.bz2
packages_apps_InCallUI-166aa8d5aa00d343d83226e110ea0be4e1577ba9.zip
Add implementation of InCallService.
Adds a rudimentary implementation of IInCallService which supports updating the UI with new outgoing calls and changing a call to active or disconnected. The new service takes updates from Telecomm in the form of CallInfo object or callInfo IDs and turns them into Call objects which work with the existing CallList. This CL does not have the changes to send commands back to Telecomm. Change-Id: I985de1d7e0c7fbcbf242ce3f7a831335790d05b5
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 56cd5e86..efab0331 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -50,6 +50,12 @@
</intent-filter>
</service>
+ <service android:name="InCallService">
+ <intent-filter>
+ <action android:name="android.telecomm.IInCallService" />
+ </intent-filter>
+ </service>
+
<!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
<receiver android:name="InCallApp$NotificationBroadcastReceiver" android:exported="false">
<intent-filter>