summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorMichael Chan <mchan@android.com>2009-11-18 18:37:09 -0800
committerMichael Chan <mchan@android.com>2009-12-14 16:16:35 -0800
commite2ae1ef8decfddcc4e5802483e92cab93c6fc67c (patch)
tree88557466f5fa6f493eda412fa5e4b9f6ce305f67 /AndroidManifest.xml
parent941c3a226d77a36ea43b8946d3f6b667449d13a8 (diff)
downloadandroid_packages_apps_Calendar-e2ae1ef8decfddcc4e5802483e92cab93c6fc67c.tar.gz
android_packages_apps_Calendar-e2ae1ef8decfddcc4e5802483e92cab93c6fc67c.tar.bz2
android_packages_apps_Calendar-e2ae1ef8decfddcc4e5802483e92cab93c6fc67c.zip
b/2224837 Changed the plumbing of how alerts/notifications work.
Cut down on the number db queries when process alerts Fixed a cursor leak Flash the event name and location in the notification bar b/2205255 Show the latest event in the notification. Prioritize based on your acceptance response. b/1544909 Flash green LED for when there's a calendar notifications. b/2224837 Cleanup alert/notification plumbing in Calendar b/1735201 Calendar notifications are not updated when locale is changed Change-Id: I86b6904607b0236fb04719f5782f43674ac6d2bc
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml30
1 files changed, 14 insertions, 16 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 064f8ae2..fc2fbd2e 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -4,16 +4,16 @@
**
** Copyright 2006, The Android Open Source Project
**
-** 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
+** 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
+** 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.
-** See the License for the specific language governing permissions and
+** 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.
+** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->
@@ -53,25 +53,25 @@
android:theme="@style/CalendarTheme" />
<activity android:name="DayActivity" android:label="@string/day_view"
android:theme="@style/CalendarTheme" />
- <activity android:name="AgendaActivity" android:label="@string/agenda_view"
+ <activity android:name="AgendaActivity" android:label="@string/agenda_view"
android:theme="@android:style/Theme.Light"
android:exported="true" />
-
+
<activity android:name="EditEvent" android:label="@string/event_edit_title"
android:theme="@android:style/Theme"
android:configChanges="orientation|keyboardHidden">
-
+
<intent-filter>
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/event" />
</intent-filter>
</activity>
-
+
<activity android:name="EventInfoActivity" android:label="@string/event_info_title"
android:theme="@android:style/Theme.Light"
android:configChanges="orientation|keyboardHidden">
-
+
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
@@ -101,9 +101,7 @@
<receiver android:name="AlertReceiver">
<intent-filter>
<action android:name="android.intent.action.EVENT_REMINDER" />
- <data android:mimeType="vnd.android.cursor.item/calendar-alert" />
- </intent-filter>
- <intent-filter>
+ <action android:name="android.intent.action.LOCALE_CHANGED" />
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.TIME_SET" />
</intent-filter>