blob: 256c34736f714988748dcc286410eefcc0194cb7 [file] [log] [blame]
The Android Open Source Project7236c3a2009-03-03 19:32:44 -08001<?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 Taylore583f852015-11-20 12:16:16 -08007
The Android Open Source Project7236c3a2009-03-03 19:32:44 -08008 http://www.apache.org/licenses/LICENSE-2.0
Tom Taylore583f852015-11-20 12:16:16 -08009
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080010 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 Komalo9dd4ab52011-09-23 15:12:47 -070019 coreApp="true"
Wei Huangb88772a2009-07-23 09:54:01 -070020 android:sharedUserId="android.uid.phone">
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080021
Jake Hamby1d714632013-09-18 12:19:33 -070022 <uses-permission android:name="android.permission.RECEIVE_SMS" />
Chih-Chung Chang17e36a22009-09-30 14:04:51 -070023 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Amith Yamasani43f9fb22014-09-10 15:56:47 -070024 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
Amit Mahajan47f5b452015-08-12 16:39:25 -070025 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
Chih-Chung Chang17e36a22009-09-30 14:04:51 -070026
Tom Taylore583f852015-11-20 12:16:16 -080027 <!-- This permission is only used to send the ACTION_EXTERNAL_PROVIDER_CHANGE intent. -->
28 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
29
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080030 <application android:process="com.android.phone"
31 android:allowClearUserData="false"
Roman Sorokin8b39acf2015-12-16 18:42:16 +010032 android:fullBackupOnly="true"
33 android:backupAgent="TelephonyBackupAgent"
34 android:restoreAnyVersion="true"
Eric Fischer04178b02009-06-16 16:35:17 -070035 android:label="@string/app_label"
Alex Klyubin578ff8a2015-05-20 11:37:09 -070036 android:icon="@mipmap/ic_launcher_phone"
Jeff Sharkeybfda7b12015-11-18 15:35:56 -070037 android:usesCleartextTraffic="true"
38 android:forceDeviceEncrypted="true"
39 android:encryptionAware="true">
Wei Huangb88772a2009-07-23 09:54:01 -070040
41 <provider android:name="TelephonyProvider"
42 android:authorities="telephony"
Nick Kralevichfddd8092012-07-28 16:06:30 -070043 android:exported="true"
Amith Yamasani887288c2014-11-06 09:01:20 -080044 android:singleUser="true"
Jake Hamby1d714632013-09-18 12:19:33 -070045 android:multiprocess="false" />
Wei Huangb88772a2009-07-23 09:54:01 -070046
Amith Yamasani2053d2e2014-08-05 10:22:46 -070047 <!-- This is a singleton provider that is used by all users.
48 A new instance is not created for each user. And the db is shared
49 as well. -->
Wei Huangb88772a2009-07-23 09:54:01 -070050 <provider android:name="SmsProvider"
51 android:authorities="sms"
Jake Hamby1d714632013-09-18 12:19:33 -070052 android:multiprocess="false"
Nick Kralevichfddd8092012-07-28 16:06:30 -070053 android:exported="true"
Amith Yamasani2053d2e2014-08-05 10:22:46 -070054 android:singleUser="true"
Svetoslav3429ad82015-04-16 16:47:03 -070055 android:readPermission="android.permission.READ_SMS" />
Wei Huangb88772a2009-07-23 09:54:01 -070056
Amith Yamasani2053d2e2014-08-05 10:22:46 -070057 <!-- This is a singleton provider that is used by all users.
58 A new instance is not created for each user. And the db is shared
Svetoslav3429ad82015-04-16 16:47:03 -070059 as well.
60
61 Note: We do not require a write permission as it is guarded by an app op.
62 -->
Wei Huangb88772a2009-07-23 09:54:01 -070063 <provider android:name="MmsProvider"
64 android:authorities="mms"
Jake Hamby1d714632013-09-18 12:19:33 -070065 android:multiprocess="false"
Nick Kralevichfddd8092012-07-28 16:06:30 -070066 android:exported="true"
Amith Yamasani2053d2e2014-08-05 10:22:46 -070067 android:singleUser="true"
Svetoslav3429ad82015-04-16 16:47:03 -070068 android:readPermission="android.permission.READ_SMS">
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080069 <grant-uri-permission android:pathPrefix="/part/" />
Wei Huangb88772a2009-07-23 09:54:01 -070070 <grant-uri-permission android:pathPrefix="/drm/" />
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080071 </provider>
Wei Huangb88772a2009-07-23 09:54:01 -070072
Amith Yamasani2053d2e2014-08-05 10:22:46 -070073 <!-- This is a singleton provider that is used by all users.
74 A new instance is not created for each user. And the db is shared
75 as well. -->
Wei Huangb88772a2009-07-23 09:54:01 -070076 <provider android:name="MmsSmsProvider"
77 android:authorities="mms-sms"
Jake Hamby1d714632013-09-18 12:19:33 -070078 android:multiprocess="false"
Nick Kralevichfddd8092012-07-28 16:06:30 -070079 android:exported="true"
Amith Yamasani2053d2e2014-08-05 10:22:46 -070080 android:singleUser="true"
Svetoslav3429ad82015-04-16 16:47:03 -070081 android:readPermission="android.permission.READ_SMS" />
Steven Liu6e3c0dc2014-06-30 14:31:50 -050082
83 <provider android:name="HbpcdLookupProvider"
84 android:authorities="hbpcd_lookup"
85 android:exported="true"
86 android:singleUser="true"
87 android:multiprocess="false"
88 android:writePermission="android.permission.MODIFY_PHONE_STATE" />
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080089 </application>
90</manifest>