blob: b6b577ae6e4f5484f75acc899187f2f5f6de6eb5 [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
Jeff Hamiltonc78d2d22010-02-11 16:25:47 -060025 <original-package android:name="com.android.calendar" />
26
The Android Open Source Project146de362009-03-03 19:32:18 -080027 <uses-permission android:name="android.permission.INTERNET" />
28 <uses-permission android:name="android.permission.VIBRATE"/>
Michael Chan47f3f702009-07-23 16:01:07 -070029 <uses-permission android:name="android.permission.READ_CONTACTS"/>
The Android Open Source Project146de362009-03-03 19:32:18 -080030 <uses-permission android:name="android.permission.READ_CALENDAR" />
31 <uses-permission android:name="android.permission.WRITE_CALENDAR" />
32 <uses-permission android:name="android.permission.WAKE_LOCK" />
Fred Quintana13719582009-07-22 20:01:03 -070033 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
The Android Open Source Project146de362009-03-03 19:32:18 -080034 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
35
36 <application android:name="CalendarApplication"
37 android:label="@string/app_label" android:icon="@drawable/app_icon"
38 android:taskAffinity="android.task.calendar">
39 <!-- TODO: Remove dependency of application on the test runner
40 (android.test) library. -->
41 <uses-library android:name="android.test.runner" />
42
43 <activity android:name="LaunchActivity"
Dianne Hackbornecb97602009-09-21 00:36:12 -070044 android:theme="@android:style/Theme.NoDisplay">
The Android Open Source Project146de362009-03-03 19:32:18 -080045 <intent-filter>
46 <action android:name="android.intent.action.MAIN" />
47 <category android:name="android.intent.category.DEFAULT" />
48 <category android:name="android.intent.category.LAUNCHER" />
49 </intent-filter>
50 </activity>
51
52 <activity android:name="MonthActivity" android:label="@string/month_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="WeekActivity" android:label="@string/week_view"
Romain Guyd22f21f2009-03-24 18:10:16 -070055 android:theme="@style/CalendarTheme" />
The Android Open Source Project146de362009-03-03 19:32:18 -080056 <activity android:name="DayActivity" android:label="@string/day_view"
Romain Guyd22f21f2009-03-24 18:10:16 -070057 android:theme="@style/CalendarTheme" />
Michael Chane2ae1ef2009-11-18 18:37:09 -080058 <activity android:name="AgendaActivity" android:label="@string/agenda_view"
The Android Open Source Project7abd8562009-03-05 14:34:37 -080059 android:theme="@android:style/Theme.Light"
The Android Open Source Project146de362009-03-03 19:32:18 -080060 android:exported="true" />
Michael Chane2ae1ef2009-11-18 18:37:09 -080061
The Android Open Source Project146de362009-03-03 19:32:18 -080062 <activity android:name="EditEvent" android:label="@string/event_edit_title"
Michael Chan47f3f702009-07-23 16:01:07 -070063 android:theme="@android:style/Theme"
The Android Open Source Project146de362009-03-03 19:32:18 -080064 android:configChanges="orientation|keyboardHidden">
Michael Chane2ae1ef2009-11-18 18:37:09 -080065
The Android Open Source Project146de362009-03-03 19:32:18 -080066 <intent-filter>
67 <action android:name="android.intent.action.EDIT" />
68 <category android:name="android.intent.category.DEFAULT" />
69 <data android:mimeType="vnd.android.cursor.item/event" />
70 </intent-filter>
71 </activity>
Michael Chane2ae1ef2009-11-18 18:37:09 -080072
The Android Open Source Project146de362009-03-03 19:32:18 -080073 <activity android:name="EventInfoActivity" android:label="@string/event_info_title"
Michael Chandc0125c2009-03-24 19:26:33 -070074 android:theme="@android:style/Theme.Light"
The Android Open Source Project146de362009-03-03 19:32:18 -080075 android:configChanges="orientation|keyboardHidden">
Michael Chane2ae1ef2009-11-18 18:37:09 -080076
The Android Open Source Project146de362009-03-03 19:32:18 -080077 <intent-filter>
78 <action android:name="android.intent.action.VIEW" />
79 <category android:name="android.intent.category.DEFAULT" />
80 <data android:mimeType="vnd.android.cursor.item/event" />
81 </intent-filter>
82 </activity>
Michael Chanb84a1512009-07-07 13:39:33 -070083
Michael Chan66988c62009-09-16 15:17:57 -070084 <activity android:name="GoogleCalendarUriIntentFilter" android:label="@string/app_label"
Michael Chanb84a1512009-07-07 13:39:33 -070085 android:theme="@android:style/Theme.Light"
86 android:configChanges="orientation|keyboardHidden">
87
88 <intent-filter>
89 <action android:name="android.intent.action.VIEW" />
90 <category android:name="android.intent.category.DEFAULT" />
91 <category android:name="android.intent.category.BROWSABLE" />
92 <data android:scheme="http" android:host="www.google.com" android:pathPrefix="/calendar/event" />
93 <data android:scheme="https" android:host="www.google.com" android:pathPrefix="/calendar/event" />
94 <data android:scheme="http" android:host="www.google.com" android:pathPattern="/calendar/hosted/.*/event" />
95 <data android:scheme="https" android:host="www.google.com" android:pathPattern="/calendar/hosted/.*/event" />
96 </intent-filter>
97 </activity>
98
The Android Open Source Project146de362009-03-03 19:32:18 -080099 <activity android:name="SelectCalendarsActivity" android:label="@string/calendars_title" />
100 <activity android:name="CalendarPreferenceActivity" android:label="@string/preferences_title" />
101 <activity android:name="AlertActivity" android:launchMode="singleInstance"
The Android Open Source Project7abd8562009-03-05 14:34:37 -0800102 android:theme="@android:style/Theme.Light" android:excludeFromRecents="true" />
The Android Open Source Project146de362009-03-03 19:32:18 -0800103 <receiver android:name="AlertReceiver">
104 <intent-filter>
105 <action android:name="android.intent.action.EVENT_REMINDER" />
Michael Chane2ae1ef2009-11-18 18:37:09 -0800106 <action android:name="android.intent.action.LOCALE_CHANGED" />
The Android Open Source Project146de362009-03-03 19:32:18 -0800107 <action android:name="android.intent.action.BOOT_COMPLETED" />
108 <action android:name="android.intent.action.TIME_SET" />
109 </intent-filter>
110 </receiver>
111
112 <service android:name="AlertService" />
113
The Android Open Source Project3cfe2e52009-03-13 13:04:24 -0700114 <service android:name="DismissAllAlarmsService" />
115
The Android Open Source Project146de362009-03-03 19:32:18 -0800116 <activity android:name="CalendarTests" android:label="Calendar Tests">
117 <intent-filter>
118 <action android:name="android.intent.action.MAIN" />
119 <category android:name="android.intent.category.UNIT_TEST" />
120 </intent-filter>
121 </activity>
122 </application>
123</manifest>
124