Add in-app CountryDetector (2/4)
Add the necessary broadcast receivers and IntentServices to
Contacts
Bug: 15593973
Change-Id: I7073bcf3f27afd6b91195ece22b17a0534a3da39
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index f145ac1..30480c2 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -480,6 +480,13 @@
</intent-filter>
</service>
+ <!-- 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"/>
+
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.android.contacts.files"