| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2008 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <manifest |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| package="com.android.exchange" |
| android:versionCode="500000" |
| android:versionName="5.0" |
| > |
| |
| <uses-permission |
| android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> |
| <uses-permission |
| android:name="android.permission.ACCESS_NETWORK_STATE"/> |
| <uses-permission |
| android:name="android.permission.INTERNET"/> |
| <uses-permission |
| android:name="android.permission.VIBRATE"/> |
| <uses-permission |
| android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| <uses-permission |
| android:name="android.permission.GET_ACCOUNTS" /> |
| <uses-permission |
| android:name="android.permission.MANAGE_ACCOUNTS" /> |
| <uses-permission |
| android:name="android.permission.AUTHENTICATE_ACCOUNTS" /> |
| <uses-permission |
| android:name="android.permission.READ_SYNC_SETTINGS" /> |
| <uses-permission |
| android:name="android.permission.WRITE_SYNC_SETTINGS" /> |
| |
| <uses-permission |
| android:name="android.permission.READ_CONTACTS"/> |
| <uses-permission |
| android:name="android.permission.WRITE_CONTACTS"/> |
| <uses-permission |
| android:name="android.permission.READ_CALENDAR"/> |
| <uses-permission |
| android:name="android.permission.WRITE_CALENDAR"/> |
| <uses-permission |
| android:name="android.permission.USE_CREDENTIALS"/> |
| |
| <!-- Only required if a store implements push mail and needs to keep network open --> |
| <uses-permission |
| android:name="android.permission.WAKE_LOCK"/> |
| <uses-permission |
| android:name="android.permission.READ_PHONE_STATE"/> |
| |
| <uses-permission |
| android:name="com.android.email.permission.READ_ATTACHMENT"/> |
| <uses-permission |
| android:name="com.android.email.permission.ACCESS_PROVIDER"/> |
| |
| <!-- Required for sending images from Gallery --> |
| <uses-permission android:name="com.google.android.gallery3d.permission.GALLERY_PROVIDER" /> |
| |
| <application |
| android:icon="@mipmap/icon" |
| android:label="@string/app_name" |
| android:name="Exchange" |
| android:theme="@android:style/Theme.Holo.Light" |
| > |
| |
| <receiver |
| android:name="com.android.exchange.EmailSyncAlarmReceiver"/> |
| <receiver |
| android:name="com.android.exchange.MailboxAlarmReceiver"/> |
| |
| <receiver |
| android:name=".service.ExchangeBroadcastReceiver" |
| android:enabled="true"> |
| <intent-filter> |
| <action |
| android:name="android.intent.action.BOOT_COMPLETED" /> |
| <action |
| android:name="android.intent.action.DEVICE_STORAGE_LOW" /> |
| <action |
| android:name="android.intent.action.DEVICE_STORAGE_OK" /> |
| <action |
| android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /> |
| </intent-filter> |
| </receiver> |
| |
| <service |
| android:name=".service.ExchangeBroadcastProcessorService" /> |
| |
| <!--Required stanza to register the EAS EmailSyncAdapterService with SyncManager --> |
| <service |
| android:name="com.android.exchange.EmailSyncAdapterService" |
| android:exported="true"> |
| <intent-filter> |
| <action |
| android:name="android.content.SyncAdapter" /> |
| </intent-filter> |
| <meta-data android:name="android.content.SyncAdapter" |
| android:resource="@xml/syncadapter_email" /> |
| </service> |
| |
| <!--Required stanza to register the EAS ContactsSyncAdapterService with SyncManager --> |
| <service |
| android:name="com.android.exchange.ContactsSyncAdapterService" |
| android:exported="true"> |
| <intent-filter> |
| <action |
| android:name="android.content.SyncAdapter" /> |
| </intent-filter> |
| <meta-data android:name="android.content.SyncAdapter" |
| android:resource="@xml/syncadapter_contacts" /> |
| </service> |
| |
| <!--Required stanza to register the EAS CalendarSyncAdapterService with SyncManager --> |
| <service |
| android:name="com.android.exchange.CalendarSyncAdapterService" |
| android:exported="true"> |
| <intent-filter> |
| <action |
| android:name="android.content.SyncAdapter" /> |
| </intent-filter> |
| <meta-data android:name="android.content.SyncAdapter" |
| android:resource="@xml/syncadapter_calendar" /> |
| </service> |
| |
| <!-- Add android:process=":remote" below to enable ExchangeService as a separate process --> |
| <service |
| android:name="com.android.exchange.ExchangeService" |
| android:enabled="true" |
| android:permission="com.android.email.permission.ACCESS_PROVIDER" |
| > |
| <intent-filter> |
| <action |
| android:name="com.android.email.EXCHANGE_INTENT" /> |
| </intent-filter> |
| </service> |
| |
| <provider |
| android:name="com.android.exchange.provider.ExchangeDirectoryProvider" |
| android:authorities="com.android.exchange.directory.provider" |
| android:readPermission="android.permission.READ_CONTACTS" |
| android:multiprocess="false" |
| android:exported="true" |
| > |
| <meta-data |
| android:name="android.content.ContactDirectory" |
| android:value="true"/> |
| </provider> |
| |
| <activity android:name=".EasCertificateRequestor"> |
| <intent-filter> |
| <action android:name="com.android.emailcommon.REQUEST_CERT" /> |
| <data android:scheme="eas" android:path="/certrequest" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| </intent-filter> |
| </activity> |
| <activity android:name=".SettingsRedirector"> |
| <intent-filter> |
| <action android:name="android.intent.action.MANAGE_NETWORK_USAGE" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| </intent-filter> |
| </activity> |
| </application> |
| </manifest> |