The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2007 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 |
Tom Taylor | e583f85 | 2015-11-20 12:16:16 -0800 | [diff] [blame] | 7 | |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Tom Taylor | e583f85 | 2015-11-20 12:16:16 -0800 | [diff] [blame] | 9 | |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -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.telephony" |
Ben Komalo | 9dd4ab5 | 2011-09-23 15:12:47 -0700 | [diff] [blame] | 19 | coreApp="true" |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 20 | android:sharedUserId="android.uid.phone"> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 21 | |
Jake Hamby | 1d71463 | 2013-09-18 12:19:33 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.RECEIVE_SMS" /> |
Chih-Chung Chang | 17e36a2 | 2009-09-30 14:04:51 -0700 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Stanislav Zholnin | bf7055f | 2019-03-26 15:37:23 +0000 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.READ_DEVICE_CONFIG" /> |
Amith Yamasani | 43f9fb2 | 2014-09-10 15:56:47 -0700 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
Amit Mahajan | 47f5b45 | 2015-08-12 16:39:25 -0700 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
Jeff Sharkey | f5ab2ca | 2018-01-05 17:16:16 -0700 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.USE_RESERVED_DISK" /> |
Chih-Chung Chang | 17e36a2 | 2009-09-30 14:04:51 -0700 | [diff] [blame] | 28 | |
Hall Liu | 018f8b1 | 2020-02-25 15:58:56 -0800 | [diff] [blame] | 29 | <!-- Used to access PlatformCompat for security fix enforcement --> |
| 30 | <uses-permission android:name="android.permission.READ_COMPAT_CHANGE_CONFIG" /> |
| 31 | <uses-permission android:name="android.permission.LOG_COMPAT_CHANGE" /> |
| 32 | |
Roman Sorokin | 50ab9e4 | 2016-03-01 19:08:47 +0100 | [diff] [blame] | 33 | <protected-broadcast android:name="android.provider.action.EXTERNAL_PROVIDER_CHANGE" /> |
Ye Wen | a5a1bf1 | 2016-05-19 12:14:38 -0700 | [diff] [blame] | 34 | <protected-broadcast android:name="android.intent.action.CONTENT_CHANGED" /> |
| 35 | |
Tom Taylor | e583f85 | 2015-11-20 12:16:16 -0800 | [diff] [blame] | 36 | <!-- This permission is only used to send the ACTION_EXTERNAL_PROVIDER_CHANGE intent. --> |
| 37 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
changbetty | d48723b | 2019-11-21 16:16:59 +0800 | [diff] [blame] | 38 | <!-- Allows accessing the messages on ICC --> |
| 39 | <uses-permission android:name="android.permission.ACCESS_MESSAGES_ON_ICC" /> |
Tom Taylor | e583f85 | 2015-11-20 12:16:16 -0800 | [diff] [blame] | 40 | |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 41 | <application android:process="com.android.phone" |
| 42 | android:allowClearUserData="false" |
Roman Sorokin | 8b39acf | 2015-12-16 18:42:16 +0100 | [diff] [blame] | 43 | android:fullBackupOnly="true" |
Christopher Tate | 481140f | 2016-02-17 18:03:05 -0800 | [diff] [blame] | 44 | android:backupInForeground="true" |
Roman Sorokin | 8b39acf | 2015-12-16 18:42:16 +0100 | [diff] [blame] | 45 | android:backupAgent="TelephonyBackupAgent" |
| 46 | android:restoreAnyVersion="true" |
Eric Fischer | 04178b0 | 2009-06-16 16:35:17 -0700 | [diff] [blame] | 47 | android:label="@string/app_label" |
Asher Simonds | 0709fdc | 2018-02-12 10:41:41 +0100 | [diff] [blame] | 48 | android:icon="@mipmap/ic_launcher" |
Jeff Sharkey | bfda7b1 | 2015-11-18 15:35:56 -0700 | [diff] [blame] | 49 | android:usesCleartextTraffic="true" |
Patrick Baumann | 3a91c1b | 2020-02-10 09:40:29 -0800 | [diff] [blame] | 50 | android:forceQueryable="true" |
Jeff Sharkey | 001516a | 2016-03-17 11:05:20 -0600 | [diff] [blame] | 51 | android:defaultToDeviceProtectedStorage="true" |
| 52 | android:directBootAware="true"> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 53 | |
| 54 | <provider android:name="TelephonyProvider" |
| 55 | android:authorities="telephony" |
Nick Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame] | 56 | android:exported="true" |
Amith Yamasani | 887288c | 2014-11-06 09:01:20 -0800 | [diff] [blame] | 57 | android:singleUser="true" |
Jake Hamby | 1d71463 | 2013-09-18 12:19:33 -0700 | [diff] [blame] | 58 | android:multiprocess="false" /> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 59 | |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 60 | <!-- This is a singleton provider that is used by all users. |
| 61 | A new instance is not created for each user. And the db is shared |
| 62 | as well. --> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 63 | <provider android:name="SmsProvider" |
| 64 | android:authorities="sms" |
Jake Hamby | 1d71463 | 2013-09-18 12:19:33 -0700 | [diff] [blame] | 65 | android:multiprocess="false" |
Nick Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame] | 66 | android:exported="true" |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 67 | android:singleUser="true" |
Svetoslav | 3429ad8 | 2015-04-16 16:47:03 -0700 | [diff] [blame] | 68 | android:readPermission="android.permission.READ_SMS" /> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 69 | |
Vasu Nori | 9e28ac6 | 2018-02-13 17:52:09 -0800 | [diff] [blame] | 70 | <provider android:name="SmsChangesProvider" |
| 71 | android:authorities="sms-changes" |
| 72 | android:multiprocess="false" |
| 73 | android:exported="true" |
| 74 | android:singleUser="true" |
| 75 | android:readPermission="android.permission.READ_SMS" /> |
| 76 | |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 77 | <!-- This is a singleton provider that is used by all users. |
| 78 | A new instance is not created for each user. And the db is shared |
Svetoslav | 3429ad8 | 2015-04-16 16:47:03 -0700 | [diff] [blame] | 79 | as well. |
| 80 | |
| 81 | Note: We do not require a write permission as it is guarded by an app op. |
| 82 | --> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 83 | <provider android:name="MmsProvider" |
| 84 | android:authorities="mms" |
Jake Hamby | 1d71463 | 2013-09-18 12:19:33 -0700 | [diff] [blame] | 85 | android:multiprocess="false" |
Nick Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame] | 86 | android:exported="true" |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 87 | android:singleUser="true" |
Svetoslav | 3429ad8 | 2015-04-16 16:47:03 -0700 | [diff] [blame] | 88 | android:readPermission="android.permission.READ_SMS"> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 89 | <grant-uri-permission android:pathPrefix="/part/" /> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 90 | <grant-uri-permission android:pathPrefix="/drm/" /> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 91 | </provider> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 92 | |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 93 | <!-- This is a singleton provider that is used by all users. |
| 94 | A new instance is not created for each user. And the db is shared |
| 95 | as well. --> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 96 | <provider android:name="MmsSmsProvider" |
| 97 | android:authorities="mms-sms" |
Jake Hamby | 1d71463 | 2013-09-18 12:19:33 -0700 | [diff] [blame] | 98 | android:multiprocess="false" |
Nick Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame] | 99 | android:exported="true" |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 100 | android:singleUser="true" |
Svetoslav | 3429ad8 | 2015-04-16 16:47:03 -0700 | [diff] [blame] | 101 | android:readPermission="android.permission.READ_SMS" /> |
Steven Liu | 6e3c0dc | 2014-06-30 14:31:50 -0500 | [diff] [blame] | 102 | |
pkanwar | 0144c1c | 2017-05-01 08:51:45 -0700 | [diff] [blame] | 103 | <provider android:name="CarrierProvider" |
| 104 | android:authorities="carrier_information" |
| 105 | android:exported="true" |
| 106 | android:singleUser="true" |
| 107 | android:multiprocess="false" |
| 108 | android:writePermission="android.permission.MODIFY_PHONE_STATE" /> |
| 109 | |
Steven Liu | 6e3c0dc | 2014-06-30 14:31:50 -0500 | [diff] [blame] | 110 | <provider android:name="HbpcdLookupProvider" |
| 111 | android:authorities="hbpcd_lookup" |
| 112 | android:exported="true" |
| 113 | android:singleUser="true" |
| 114 | android:multiprocess="false" |
| 115 | android:writePermission="android.permission.MODIFY_PHONE_STATE" /> |
Roman Sorokin | 21736c3 | 2016-02-17 15:02:56 +0100 | [diff] [blame] | 116 | |
fionaxu | 8900da4 | 2017-10-18 14:12:40 -0700 | [diff] [blame] | 117 | <provider android:name="CarrierIdProvider" |
fionaxu | afe8641 | 2018-02-28 11:21:42 -0800 | [diff] [blame] | 118 | android:authorities="carrier_id" |
fionaxu | 8900da4 | 2017-10-18 14:12:40 -0700 | [diff] [blame] | 119 | android:exported="true" |
| 120 | android:singleUser="true" |
fionaxu | 8ac14e4 | 2018-01-23 15:14:10 -0800 | [diff] [blame] | 121 | android:multiprocess="false" /> |
fionaxu | 8900da4 | 2017-10-18 14:12:40 -0700 | [diff] [blame] | 122 | |
Roman Sorokin | 21736c3 | 2016-02-17 15:02:56 +0100 | [diff] [blame] | 123 | <service |
| 124 | android:name=".TelephonyBackupAgent$DeferredSmsMmsRestoreService" |
| 125 | android:exported="false" /> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 126 | </application> |
| 127 | </manifest> |