summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml15
1 files changed, 7 insertions, 8 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 482da823b..bacec34f6 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -252,6 +252,13 @@
android:name=".contact.ContactUpdateService"
android:exported="false" />
+ <!-- Broadcast receiver that passively listens to location updates -->
+ <receiver android:name="com.android.contacts.common.location.CountryDetector$LocationChangedReceiver"/>
+
+ <!-- IntentService to update the user's current country -->
+ <service android:name="com.android.contacts.common.location.UpdateCountryService"
+ android:exported="false"/>
+
<!-- Main in-call UI activity. This is never launched directly
from outside the phone app; instead, it's either launched by
the OutgoingCallBroadcaster (for outgoing calls), or as the
@@ -266,14 +273,6 @@
android:process="com.android.incallui">
</activity>
- <service android:name="com.android.incallui.CallHandlerService"
- android:process="com.android.incallui"
- android:permission="android.permission.BIND_CALL_SERVICE">
- <intent-filter>
- <action android:name="com.android.services.telephony.common.ICallHandlerService" />
- </intent-filter>
- </service>
-
<!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
<receiver android:name="com.android.incallui.InCallApp$NotificationBroadcastReceiver"
android:exported="false"