Support the new ACTION_EXTERNAL_PROVIDER_CHANGE intent
When a change is made to the SmsProvider or MmsProvider by a process
other than the default Sms app, notify the default Sms app of the change
so it can resync.
Change-Id: Ia3885ead436bfaf46c4a61a40e7435172060c785
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 80f0a41..49c71eb 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -4,9 +4,9 @@
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
-
+
http://www.apache.org/licenses/LICENSE-2.0
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -24,6 +24,9 @@
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
+ <!-- This permission is only used to send the ACTION_EXTERNAL_PROVIDER_CHANGE intent. -->
+ <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
+
<application android:process="com.android.phone"
android:allowClearUserData="false"
android:allowBackup="false"