The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
Ken Shirriff | 99fec79 | 2010-01-21 15:22:03 -0800 | [diff] [blame] | 7 | |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Ken Shirriff | 99fec79 | 2010-01-21 15:22:03 -0800 | [diff] [blame] | 9 | |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | package="com.android.providers.calendar" |
| 19 | android:sharedUserId="android.uid.calendar"> |
| 20 | |
| 21 | <uses-permission android:name="android.permission.READ_CALENDAR" /> |
| 22 | <uses-permission android:name="android.permission.WRITE_CALENDAR" /> |
| 23 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 24 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" /> |
| 25 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.cl" /> |
| 26 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
Tony Mak | 59bf124 | 2016-02-02 10:47:39 +0000 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.GET_ACCOUNTS_PRIVILEGED" /> |
Fred Quintana | a02c60c | 2009-07-22 20:01:52 -0700 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 29 | <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.READ_SYNC_STATS" /> |
Fred Quintana | 2d873ad | 2009-08-17 13:05:50 -0700 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
| 32 | <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.INTERNET" /> |
| 34 | <uses-permission android:name="android.permission.SUBSCRIBED_FEEDS_READ" /> |
| 35 | <uses-permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE" /> |
Jeff Hamilton | 1168e28 | 2010-02-16 18:30:21 -0600 | [diff] [blame] | 36 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
Michael Chan | 9774e10 | 2011-03-09 02:27:12 -0800 | [diff] [blame] | 37 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Dianne Hackborn | 043587d | 2013-01-25 11:29:31 -0800 | [diff] [blame] | 38 | <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" /> |
Jeff Sharkey | b6d2cdb | 2018-01-05 17:15:24 -0700 | [diff] [blame] | 39 | <uses-permission android:name="android.permission.USE_RESERVED_DISK" /> |
yuemingw | a5c0f8d | 2018-10-11 16:44:41 +0100 | [diff] [blame] | 40 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
| 41 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 42 | |
Fabrice Di Meglio | 9b6911d | 2010-02-18 10:18:46 -0800 | [diff] [blame] | 43 | <application android:label="@string/calendar_storage" |
Jay Shrauner | 9e49d12 | 2014-07-30 09:49:16 -0700 | [diff] [blame] | 44 | android:allowBackup="false" |
Alex Klyubin | b848d86 | 2015-04-02 13:44:46 -0700 | [diff] [blame] | 45 | android:icon="@drawable/app_icon" |
| 46 | android:usesCleartextTraffic="false"> |
Ken Shirriff | a969e94 | 2009-10-19 14:06:00 -0700 | [diff] [blame] | 47 | |
Ken Shirriff | 8446e6f | 2010-01-22 13:44:16 -0800 | [diff] [blame] | 48 | <provider android:name="CalendarProvider2" android:authorities="com.android.calendar" |
Ken Shirriff | a969e94 | 2009-10-19 14:06:00 -0700 | [diff] [blame] | 49 | android:label="@string/provider_label" |
| 50 | android:multiprocess="false" |
Nick Kralevich | e4c1121 | 2012-07-28 14:22:16 -0700 | [diff] [blame] | 51 | android:exported="true" |
Ken Shirriff | a969e94 | 2009-10-19 14:06:00 -0700 | [diff] [blame] | 52 | android:readPermission="android.permission.READ_CALENDAR" |
| 53 | android:writePermission="android.permission.WRITE_CALENDAR" /> |
Ken Shirriff | a969e94 | 2009-10-19 14:06:00 -0700 | [diff] [blame] | 54 | |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 55 | <receiver android:name="CalendarReceiver"> |
| 56 | <intent-filter> |
| 57 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 58 | </intent-filter> |
| 59 | </receiver> |
Mason Tang | a84cc39 | 2010-06-18 12:23:13 -0700 | [diff] [blame] | 60 | |
Ken Shirriff | 46cb085 | 2009-06-11 22:08:32 -0700 | [diff] [blame] | 61 | <activity android:name="CalendarDebug" android:label="@string/calendar_info"> |
| 62 | <intent-filter> |
| 63 | <action android:name="android.intent.action.MAIN" /> |
| 64 | <category android:name="android.intent.category.DEFAULT" /> |
| 65 | </intent-filter> |
| 66 | </activity> |
Michael Chan | 9774e10 | 2011-03-09 02:27:12 -0800 | [diff] [blame] | 67 | <activity android:name="CalendarDebugActivity" android:label="@string/calendar_info" |
| 68 | android:theme="@android:style/Theme.Holo.Dialog"> |
| 69 | <intent-filter> |
| 70 | <action android:name="android.intent.action.MAIN" /> |
| 71 | <category android:name="android.intent.category.DEFAULT" /> |
| 72 | </intent-filter> |
| 73 | </activity> |
Ken Shirriff | 46cb085 | 2009-06-11 22:08:32 -0700 | [diff] [blame] | 74 | <receiver android:name="CalendarDebugReceiver"> |
| 75 | <intent-filter> |
| 76 | <action android:name="android.provider.Telephony.SECRET_CODE" /> |
| 77 | <data android:scheme="android_secret_code" android:host="225" /> |
| 78 | </intent-filter> |
| 79 | </receiver> |
| 80 | |
Jeff Hamilton | 25b0f0e | 2010-05-25 22:14:41 -0500 | [diff] [blame] | 81 | <!-- Handles database upgrades after OTAs, then disables itself --> |
| 82 | <receiver android:name="CalendarUpgradeReceiver"> |
| 83 | <!-- This broadcast is sent after the core system has finished |
| 84 | booting, before the home app is launched or BOOT_COMPLETED |
| 85 | is sent. --> |
| 86 | <intent-filter> |
| 87 | <action android:name="android.intent.action.PRE_BOOT_COMPLETED"/> |
| 88 | </intent-filter> |
| 89 | </receiver> |
Ken Shirriff | 46cb085 | 2009-06-11 22:08:32 -0700 | [diff] [blame] | 90 | |
Tony Mak | ea1b82d | 2015-07-16 13:03:48 +0100 | [diff] [blame] | 91 | <receiver android:name="CalendarProviderBroadcastReceiver" |
| 92 | android:exported="false"> |
Fabrice Di Meglio | 8bb1421 | 2010-10-22 17:41:43 -0700 | [diff] [blame] | 93 | <intent-filter> |
Tony Mak | ea1b82d | 2015-07-16 13:03:48 +0100 | [diff] [blame] | 94 | <action android:name="com.android.providers.calendar.intent.CalendarProvider2"/> |
Fabrice Di Meglio | 8bb1421 | 2010-10-22 17:41:43 -0700 | [diff] [blame] | 95 | <category android:name="com.android.providers.calendar"/> |
| 96 | </intent-filter> |
Tony Mak | ea1b82d | 2015-07-16 13:03:48 +0100 | [diff] [blame] | 97 | <intent-filter> |
| 98 | <action android:name="android.intent.action.EVENT_REMINDER"/> |
| 99 | <data android:scheme="content" /> |
| 100 | </intent-filter> |
Fabrice Di Meglio | 8bb1421 | 2010-10-22 17:41:43 -0700 | [diff] [blame] | 101 | </receiver> |
Fabrice Di Meglio | 8bb1421 | 2010-10-22 17:41:43 -0700 | [diff] [blame] | 102 | |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 103 | </application> |
| 104 | </manifest> |