blob: fc2fbd2ea2b109b5ea5922a3647a21c9ab6fee40 [file] [log] [blame]
The Android Open Source Project146de362009-03-03 19:32:18 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/* //device/apps/Calendar/AndroidManifest.xml
4**
5** Copyright 2006, The Android Open Source Project
6**
Michael Chane2ae1ef2009-11-18 18:37:09 -08007** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
The Android Open Source Project146de362009-03-03 19:32:18 -080010**
Michael Chane2ae1ef2009-11-18 18:37:09 -080011** http://www.apache.org/licenses/LICENSE-2.0
The Android Open Source Project146de362009-03-03 19:32:18 -080012**
Michael Chane2ae1ef2009-11-18 18:37:09 -080013** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
The Android Open Source Project146de362009-03-03 19:32:18 -080017** limitations under the License.
18*/
19-->
20<manifest xmlns:android="http://schemas.android.com/apk/res/android"
21 package="com.android.calendar"
22 android:sharedUserId="android.uid.calendar"
23 android:sharedUserLabel="@string/app_label">
24
25 <uses-permission android:name="android.permission.INTERNET" />
26 <uses-permission android:name="android.permission.VIBRATE"/>
Michael Chan47f3f702009-07-23 16:01:07 -070027 <uses-permission android:name="android.permission.READ_CONTACTS"/>
The Android Open Source Project146de362009-03-03 19:32:18 -080028 <uses-permission android:name="android.permission.READ_CALENDAR" />
29 <uses-permission android:name="android.permission.WRITE_CALENDAR" />
30 <uses-permission android:name="android.permission.WAKE_LOCK" />
Fred Quintana13719582009-07-22 20:01:03 -070031 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
The Android Open Source Project146de362009-03-03 19:32:18 -080032 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
33
34 <application android:name="CalendarApplication"
35 android:label="@string/app_label" android:icon="@drawable/app_icon"
36 android:taskAffinity="android.task.calendar">
37 <!-- TODO: Remove dependency of application on the test runner
38 (android.test) library. -->
39 <uses-library android:name="android.test.runner" />
40
41 <activity android:name="LaunchActivity"
Dianne Hackbornecb97602009-09-21 00:36:12 -070042 android:theme="@android:style/Theme.NoDisplay">
The Android Open Source Project146de362009-03-03 19:32:18 -080043 <intent-filter>
44 <action android:name="android.intent.action.MAIN" />
45 <category android:name="android.intent.category.DEFAULT" />
46 <category android:name="android.intent.category.LAUNCHER" />
47 </intent-filter>
48 </activity>
49
50 <activity android:name="MonthActivity" android:label="@string/month_view"
Romain Guyd22f21f2009-03-24 18:10:16 -070051 android:theme="@style/CalendarTheme" />
The Android Open Source Project146de362009-03-03 19:32:18 -080052 <activity android:name="WeekActivity" android:label="@string/week_view"
Romain Guyd22f21f2009-03-24 18:10:16 -070053 android:theme="@style/CalendarTheme" />
The Android Open Source Project146de362009-03-03 19:32:18 -080054 <activity android:name="DayActivity" android:label="@string/day_view"
Romain Guyd22f21f2009-03-24 18:10:16 -070055 android:theme="@style/CalendarTheme" />
Michael Chane2ae1ef2009-11-18 18:37:09 -080056 <activity android:name="AgendaActivity" android:label="@string/agenda_view"
The Android Open Source Project7abd8562009-03-05 14:34:37 -080057 android:theme="@android:style/Theme.Light"
The Android Open Source Project146de362009-03-03 19:32:18 -080058 android:exported="true" />
Michael Chane2ae1ef2009-11-18 18:37:09 -080059
The Android Open Source Project146de362009-03-03 19:32:18 -080060 <activity android:name="EditEvent" android:label="@string/event_edit_title"
Michael Chan47f3f702009-07-23 16:01:07 -070061 android:theme="@android:style/Theme"
The Android Open Source Project146de362009-03-03 19:32:18 -080062 android:configChanges="orientation|keyboardHidden">
Michael Chane2ae1ef2009-11-18 18:37:09 -080063
The Android Open Source Project146de362009-03-03 19:32:18 -080064 <intent-filter>
65 <action android:name="android.intent.action.EDIT" />
66 <category android:name="android.intent.category.DEFAULT" />
67 <data android:mimeType="vnd.android.cursor.item/event" />
68 </intent-filter>
69 </activity>
Michael Chane2ae1ef2009-11-18 18:37:09 -080070
The Android Open Source Project146de362009-03-03 19:32:18 -080071 <activity android:name="EventInfoActivity" android:label="@string/event_info_title"
Michael Chandc0125c2009-03-24 19:26:33 -070072 android:theme="@android:style/Theme.Light"
The Android Open Source Project146de362009-03-03 19:32:18 -080073 android:configChanges="orientation|keyboardHidden">
Michael Chane2ae1ef2009-11-18 18:37:09 -080074
The Android Open Source Project146de362009-03-03 19:32:18 -080075 <intent-filter>
76 <action android:name="android.intent.action.VIEW" />
77 <category android:name="android.intent.category.DEFAULT" />
78 <data android:mimeType="vnd.android.cursor.item/event" />
79 </intent-filter>
80 </activity>
Michael Chanb84a1512009-07-07 13:39:33 -070081
Michael Chan66988c62009-09-16 15:17:57 -070082 <activity android:name="GoogleCalendarUriIntentFilter" android:label="@string/app_label"
Michael Chanb84a1512009-07-07 13:39:33 -070083 android:theme="@android:style/Theme.Light"
84 android:configChanges="orientation|keyboardHidden">
85
86 <intent-filter>
87 <action android:name="android.intent.action.VIEW" />
88 <category android:name="android.intent.category.DEFAULT" />
89 <category android:name="android.intent.category.BROWSABLE" />
90 <data android:scheme="http" android:host="www.google.com" android:pathPrefix="/calendar/event" />
91 <data android:scheme="https" android:host="www.google.com" android:pathPrefix="/calendar/event" />
92 <data android:scheme="http" android:host="www.google.com" android:pathPattern="/calendar/hosted/.*/event" />
93 <data android:scheme="https" android:host="www.google.com" android:pathPattern="/calendar/hosted/.*/event" />
94 </intent-filter>
95 </activity>
96
The Android Open Source Project146de362009-03-03 19:32:18 -080097 <activity android:name="SelectCalendarsActivity" android:label="@string/calendars_title" />
98 <activity android:name="CalendarPreferenceActivity" android:label="@string/preferences_title" />
99 <activity android:name="AlertActivity" android:launchMode="singleInstance"
The Android Open Source Project7abd8562009-03-05 14:34:37 -0800100 android:theme="@android:style/Theme.Light" android:excludeFromRecents="true" />
The Android Open Source Project146de362009-03-03 19:32:18 -0800101 <receiver android:name="AlertReceiver">
102 <intent-filter>
103 <action android:name="android.intent.action.EVENT_REMINDER" />
Michael Chane2ae1ef2009-11-18 18:37:09 -0800104 <action android:name="android.intent.action.LOCALE_CHANGED" />
The Android Open Source Project146de362009-03-03 19:32:18 -0800105 <action android:name="android.intent.action.BOOT_COMPLETED" />
106 <action android:name="android.intent.action.TIME_SET" />
107 </intent-filter>
108 </receiver>
109
110 <service android:name="AlertService" />
111
The Android Open Source Project3cfe2e52009-03-13 13:04:24 -0700112 <service android:name="DismissAllAlarmsService" />
113
The Android Open Source Project146de362009-03-03 19:32:18 -0800114 <activity android:name="CalendarTests" android:label="Calendar Tests">
115 <intent-filter>
116 <action android:name="android.intent.action.MAIN" />
117 <category android:name="android.intent.category.UNIT_TEST" />
118 </intent-filter>
119 </activity>
120 </application>
121</manifest>
122