Made broadcast EXTERNAL_PROVIDER_CHANGE protected and with FLAG_RECEIVER_REPLACE_PENDING.
android.provider.action.EXTERNAL_PROVIDER_CHANGE should be protected
since it's being sent by system app (TelephonyProvider).
android.provider.action.EXTERNAL_PROVIDER_CHANGE broadcast in notifyIfNotDefaultSmsApp()
should be using the FLAG_RECEIVER_REPLACE_PENDING flag on its
Intent, so that it's never be stacked up multiple copies of it in the queue.
Bug: 27341575
Bug: 27429156
Change-Id: I980d38bd2dbaa3888cfe0d6a6cfe0e4d991f2431
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 06a331c..88acca2 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -24,6 +24,7 @@
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
+ <protected-broadcast android:name="android.provider.action.EXTERNAL_PROVIDER_CHANGE" />
<!-- This permission is only used to send the ACTION_EXTERNAL_PROVIDER_CHANGE intent. -->
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />