blob: 49860ffa3bb57d59e807ba4f1fe7d2e649d64280 [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"
The Android Open Source Project146de362009-03-03 19:32:18 -080022 android:sharedUserLabel="@string/app_label">
23
Jeff Hamiltona17725e2010-02-16 18:28:16 -060024 <!--
25 NOTE: and original-package cannot be used, since the Eclair
26 version was using a shared user ID with the provider.
27 -->
Jeff Hamiltonc78d2d22010-02-11 16:25:47 -060028
Jeff Hamiltona17725e2010-02-16 18:28:16 -060029 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
The Android Open Source Project146de362009-03-03 19:32:18 -080030 <uses-permission android:name="android.permission.INTERNET" />
31 <uses-permission android:name="android.permission.VIBRATE"/>
Michael Chan47f3f702009-07-23 16:01:07 -070032 <uses-permission android:name="android.permission.READ_CONTACTS"/>
The Android Open Source Project146de362009-03-03 19:32:18 -080033 <uses-permission android:name="android.permission.READ_CALENDAR" />
34 <uses-permission android:name="android.permission.WRITE_CALENDAR" />
35 <uses-permission android:name="android.permission.WAKE_LOCK" />
Fred Quintana13719582009-07-22 20:01:03 -070036 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
The Android Open Source Project146de362009-03-03 19:32:18 -080037 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
38
39 <application android:name="CalendarApplication"
40 android:label="@string/app_label" android:icon="@drawable/app_icon"
41 android:taskAffinity="android.task.calendar">
42 <!-- TODO: Remove dependency of application on the test runner
43 (android.test) library. -->
44 <uses-library android:name="android.test.runner" />
45
46 <activity android:name="LaunchActivity"
Dianne Hackbornecb97602009-09-21 00:36:12 -070047 android:theme="@android:style/Theme.NoDisplay">
The Android Open Source Project146de362009-03-03 19:32:18 -080048 <intent-filter>
49 <action android:name="android.intent.action.MAIN" />
50 <category android:name="android.intent.category.DEFAULT" />
51 <category android:name="android.intent.category.LAUNCHER" />
52 </intent-filter>
Erik1ef7f3a2010-02-24 14:46:03 -080053 <intent-filter>
54 <action android:name="android.intent.action.VIEW" />
55 <category android:name="android.intent.category.DEFAULT" />
56 <data android:mimeType="time/epoch" />
57 <data android:host="com.android.calendar" />
58 <data android:scheme="content"/>
59 </intent-filter>
The Android Open Source Project146de362009-03-03 19:32:18 -080060 </activity>
61
62 <activity android:name="MonthActivity" android:label="@string/month_view"
Romain Guyd22f21f2009-03-24 18:10:16 -070063 android:theme="@style/CalendarTheme" />
The Android Open Source Project146de362009-03-03 19:32:18 -080064 <activity android:name="WeekActivity" android:label="@string/week_view"
Romain Guyd22f21f2009-03-24 18:10:16 -070065 android:theme="@style/CalendarTheme" />
The Android Open Source Project146de362009-03-03 19:32:18 -080066 <activity android:name="DayActivity" android:label="@string/day_view"
Romain Guyd22f21f2009-03-24 18:10:16 -070067 android:theme="@style/CalendarTheme" />
Michael Chane2ae1ef2009-11-18 18:37:09 -080068 <activity android:name="AgendaActivity" android:label="@string/agenda_view"
The Android Open Source Project7abd8562009-03-05 14:34:37 -080069 android:theme="@android:style/Theme.Light"
The Android Open Source Project146de362009-03-03 19:32:18 -080070 android:exported="true" />
Michael Chane2ae1ef2009-11-18 18:37:09 -080071
The Android Open Source Project146de362009-03-03 19:32:18 -080072 <activity android:name="EditEvent" android:label="@string/event_edit_title"
Michael Chan47f3f702009-07-23 16:01:07 -070073 android:theme="@android:style/Theme"
The Android Open Source Project146de362009-03-03 19:32:18 -080074 android:configChanges="orientation|keyboardHidden">
Michael Chane2ae1ef2009-11-18 18:37:09 -080075
The Android Open Source Project146de362009-03-03 19:32:18 -080076 <intent-filter>
77 <action android:name="android.intent.action.EDIT" />
78 <category android:name="android.intent.category.DEFAULT" />
79 <data android:mimeType="vnd.android.cursor.item/event" />
80 </intent-filter>
81 </activity>
Michael Chane2ae1ef2009-11-18 18:37:09 -080082
The Android Open Source Project146de362009-03-03 19:32:18 -080083 <activity android:name="EventInfoActivity" android:label="@string/event_info_title"
Michael Chandc0125c2009-03-24 19:26:33 -070084 android:theme="@android:style/Theme.Light"
The Android Open Source Project146de362009-03-03 19:32:18 -080085 android:configChanges="orientation|keyboardHidden">
Michael Chane2ae1ef2009-11-18 18:37:09 -080086
The Android Open Source Project146de362009-03-03 19:32:18 -080087 <intent-filter>
88 <action android:name="android.intent.action.VIEW" />
89 <category android:name="android.intent.category.DEFAULT" />
90 <data android:mimeType="vnd.android.cursor.item/event" />
91 </intent-filter>
92 </activity>
Michael Chanb84a1512009-07-07 13:39:33 -070093
Michael Chan66988c62009-09-16 15:17:57 -070094 <activity android:name="GoogleCalendarUriIntentFilter" android:label="@string/app_label"
Michael Chanb84a1512009-07-07 13:39:33 -070095 android:theme="@android:style/Theme.Light"
96 android:configChanges="orientation|keyboardHidden">
97
98 <intent-filter>
99 <action android:name="android.intent.action.VIEW" />
100 <category android:name="android.intent.category.DEFAULT" />
101 <category android:name="android.intent.category.BROWSABLE" />
102 <data android:scheme="http" android:host="www.google.com" android:pathPrefix="/calendar/event" />
103 <data android:scheme="https" android:host="www.google.com" android:pathPrefix="/calendar/event" />
104 <data android:scheme="http" android:host="www.google.com" android:pathPattern="/calendar/hosted/.*/event" />
105 <data android:scheme="https" android:host="www.google.com" android:pathPattern="/calendar/hosted/.*/event" />
106 </intent-filter>
107 </activity>
108
The Android Open Source Project146de362009-03-03 19:32:18 -0800109 <activity android:name="SelectCalendarsActivity" android:label="@string/calendars_title" />
110 <activity android:name="CalendarPreferenceActivity" android:label="@string/preferences_title" />
111 <activity android:name="AlertActivity" android:launchMode="singleInstance"
The Android Open Source Project7abd8562009-03-05 14:34:37 -0800112 android:theme="@android:style/Theme.Light" android:excludeFromRecents="true" />
The Android Open Source Project146de362009-03-03 19:32:18 -0800113 <receiver android:name="AlertReceiver">
114 <intent-filter>
115 <action android:name="android.intent.action.EVENT_REMINDER" />
Michael Chane2ae1ef2009-11-18 18:37:09 -0800116 <action android:name="android.intent.action.LOCALE_CHANGED" />
The Android Open Source Project146de362009-03-03 19:32:18 -0800117 <action android:name="android.intent.action.BOOT_COMPLETED" />
118 <action android:name="android.intent.action.TIME_SET" />
119 </intent-filter>
120 </receiver>
121
122 <service android:name="AlertService" />
123
The Android Open Source Project3cfe2e52009-03-13 13:04:24 -0700124 <service android:name="DismissAllAlarmsService" />
125
The Android Open Source Project146de362009-03-03 19:32:18 -0800126 <activity android:name="CalendarTests" android:label="Calendar Tests">
127 <intent-filter>
128 <action android:name="android.intent.action.MAIN" />
129 <category android:name="android.intent.category.UNIT_TEST" />
130 </intent-filter>
131 </activity>
132 </application>
133</manifest>
134