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 |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 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" /> |
| 27 | <uses-permission android:name="android.permission.READ_SYNC_STATS" /> |
| 28 | <uses-permission android:name="android.permission.INTERNET" /> |
| 29 | <uses-permission android:name="android.permission.SUBSCRIBED_FEEDS_READ" /> |
| 30 | <uses-permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE" /> |
| 31 | |
| 32 | <application android:process="com.android.calendar" |
Eric Fischer | 9449b8b | 2009-06-16 16:33:53 -0700 | [diff] [blame^] | 33 | android:label="@string/calendar_storage" |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 34 | android:icon="@drawable/app_icon"> |
| 35 | <!-- TODO: Remove dependency of application on the test runner |
| 36 | (android.test) library. --> |
| 37 | <uses-library android:name="android.test.runner" /> |
| 38 | <provider android:name="CalendarProvider" android:authorities="calendar" |
| 39 | android:syncable="true" android:multiprocess="false" |
| 40 | android:readPermission="android.permission.READ_CALENDAR" |
| 41 | android:writePermission="android.permission.WRITE_CALENDAR" /> |
| 42 | <activity android:name="CalendarContentProviderTests" android:label="Calendar Content Provider"> |
| 43 | <intent-filter> |
| 44 | <action android:name="android.intent.action.MAIN" /> |
| 45 | <category android:name="android.intent.category.UNIT_TEST" /> |
| 46 | </intent-filter> |
| 47 | </activity> |
| 48 | <receiver android:name="CalendarReceiver"> |
| 49 | <intent-filter> |
| 50 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 51 | </intent-filter> |
| 52 | </receiver> |
The Android Open Source Project | 8c72707 | 2009-03-11 12:11:59 -0700 | [diff] [blame] | 53 | <receiver android:name=".CalendarAppWidgetProvider" android:label="@string/gadget_title"> |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 54 | <intent-filter> |
The Android Open Source Project | 8c72707 | 2009-03-11 12:11:59 -0700 | [diff] [blame] | 55 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
| 56 | <action android:name="com.android.calendar.APPWIDGET_UPDATE" /> |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 57 | </intent-filter> |
The Android Open Source Project | 8c72707 | 2009-03-11 12:11:59 -0700 | [diff] [blame] | 58 | <meta-data android:name="android.appwidget.provider" android:resource="@xml/appwidget_info" /> |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 59 | </receiver> |
| 60 | <receiver android:name=".TimeChangeReceiver" android:enabled="false"> |
| 61 | <intent-filter> |
| 62 | <action android:name="android.intent.action.TIMEZONE_CHANGED" /> |
| 63 | <action android:name="android.intent.action.TIME_SET" /> |
| 64 | <action android:name="android.intent.action.DATE_CHANGED" /> |
| 65 | </intent-filter> |
| 66 | </receiver> |
The Android Open Source Project | 3839079 | 2009-03-13 13:04:25 -0700 | [diff] [blame] | 67 | <service android:name=".CalendarAppWidgetService" /> |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 68 | </application> |
| 69 | </manifest> |