AlertReceiver now listens to PROVIDER_CHANGED so event changes will refresh the notification bar.

Bug: 6282451
Change-Id: I16cde055c1f7a522d571da06d1fc711f9d3ea80d
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 8b3e1bb..2680bc0 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -161,11 +161,18 @@
         <receiver android:name=".alerts.AlertReceiver">
             <intent-filter>
                 <action android:name="android.intent.action.EVENT_REMINDER" />
-                <action android:name="android.intent.action.LOCALE_CHANGED" />
                 <action android:name="android.intent.action.BOOT_COMPLETED" />
                 <action android:name="android.intent.action.TIME_SET" />
                 <data android:scheme="content" />
             </intent-filter>
+            <intent-filter>
+                <action android:name="android.intent.action.LOCALE_CHANGED" />
+            </intent-filter>
+            <intent-filter>
+                <action android:name="android.intent.action.PROVIDER_CHANGED"/>
+                <data android:scheme="content"/>
+                <data android:host="com.android.calendar"/>
+            </intent-filter>
         </receiver>
 
         <service android:name=".alerts.AlertService" />