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" |
| 33 | android:label="Calendar Storage" |
| 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" /> |
Fred Quintana | bad84b2 | 2009-04-29 17:53:21 -0700 | [diff] [blame^] | 42 | <service android:name="CalendarSyncAdapterService" android:exported="true"> |
| 43 | <intent-filter> |
| 44 | <action android:name="android.content.SyncAdapter" /> |
| 45 | </intent-filter> |
| 46 | <meta-data android:name="android.content.SyncAdapter" |
| 47 | android:resource="@xml/syncadapter" /> |
| 48 | </service> |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 49 | <activity android:name="CalendarContentProviderTests" android:label="Calendar Content Provider"> |
| 50 | <intent-filter> |
| 51 | <action android:name="android.intent.action.MAIN" /> |
| 52 | <category android:name="android.intent.category.UNIT_TEST" /> |
| 53 | </intent-filter> |
| 54 | </activity> |
| 55 | <receiver android:name="CalendarReceiver"> |
| 56 | <intent-filter> |
| 57 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 58 | </intent-filter> |
| 59 | </receiver> |
The Android Open Source Project | 8c72707 | 2009-03-11 12:11:59 -0700 | [diff] [blame] | 60 | <receiver android:name=".CalendarAppWidgetProvider" android:label="@string/gadget_title"> |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 61 | <intent-filter> |
The Android Open Source Project | 8c72707 | 2009-03-11 12:11:59 -0700 | [diff] [blame] | 62 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
| 63 | <action android:name="com.android.calendar.APPWIDGET_UPDATE" /> |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 64 | </intent-filter> |
The Android Open Source Project | 8c72707 | 2009-03-11 12:11:59 -0700 | [diff] [blame] | 65 | <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] | 66 | </receiver> |
| 67 | <receiver android:name=".TimeChangeReceiver" android:enabled="false"> |
| 68 | <intent-filter> |
| 69 | <action android:name="android.intent.action.TIMEZONE_CHANGED" /> |
| 70 | <action android:name="android.intent.action.TIME_SET" /> |
| 71 | <action android:name="android.intent.action.DATE_CHANGED" /> |
| 72 | </intent-filter> |
| 73 | </receiver> |
The Android Open Source Project | 3839079 | 2009-03-13 13:04:25 -0700 | [diff] [blame] | 74 | <service android:name=".CalendarAppWidgetService" /> |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 75 | </application> |
| 76 | </manifest> |