blob: 32c19622c09a7fe2f3eb28d1b1af71519a7b35f1 [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
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.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" />
24
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080025 <application android:process="com.android.phone"
26 android:allowClearUserData="false"
Christopher Tatebd2c26c2011-07-22 15:11:17 -070027 android:allowBackup="false"
Eric Fischer04178b02009-06-16 16:35:17 -070028 android:label="@string/app_label"
Jason Chen9052dc22012-10-12 14:27:39 -070029 android:icon="@mipmap/ic_launcher_phone">
Wei Huangb88772a2009-07-23 09:54:01 -070030
31 <provider android:name="TelephonyProvider"
32 android:authorities="telephony"
Nick Kralevichfddd8092012-07-28 16:06:30 -070033 android:exported="true"
Jake Hamby1d714632013-09-18 12:19:33 -070034 android:multiprocess="false" />
Wei Huangb88772a2009-07-23 09:54:01 -070035
Amith Yamasani2053d2e2014-08-05 10:22:46 -070036 <!-- This is a singleton provider that is used by all users.
37 A new instance is not created for each user. And the db is shared
38 as well. -->
Wei Huangb88772a2009-07-23 09:54:01 -070039 <provider android:name="SmsProvider"
40 android:authorities="sms"
Jake Hamby1d714632013-09-18 12:19:33 -070041 android:multiprocess="false"
Nick Kralevichfddd8092012-07-28 16:06:30 -070042 android:exported="true"
Amith Yamasani2053d2e2014-08-05 10:22:46 -070043 android:singleUser="true"
Wei Huangb88772a2009-07-23 09:54:01 -070044 android:readPermission="android.permission.READ_SMS"
45 android:writePermission="android.permission.WRITE_SMS" />
46
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="MmsProvider"
51 android:authorities="mms"
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"
Wei Huangb88772a2009-07-23 09:54:01 -070055 android:readPermission="android.permission.READ_SMS"
56 android:writePermission="android.permission.WRITE_SMS">
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080057 <grant-uri-permission android:pathPrefix="/part/" />
Wei Huangb88772a2009-07-23 09:54:01 -070058 <grant-uri-permission android:pathPrefix="/drm/" />
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080059 </provider>
Wei Huangb88772a2009-07-23 09:54:01 -070060
Amith Yamasani2053d2e2014-08-05 10:22:46 -070061 <!-- This is a singleton provider that is used by all users.
62 A new instance is not created for each user. And the db is shared
63 as well. -->
Wei Huangb88772a2009-07-23 09:54:01 -070064 <provider android:name="MmsSmsProvider"
65 android:authorities="mms-sms"
Jake Hamby1d714632013-09-18 12:19:33 -070066 android:multiprocess="false"
Nick Kralevichfddd8092012-07-28 16:06:30 -070067 android:exported="true"
Amith Yamasani2053d2e2014-08-05 10:22:46 -070068 android:singleUser="true"
Wei Huangb88772a2009-07-23 09:54:01 -070069 android:readPermission="android.permission.READ_SMS"
70 android:writePermission="android.permission.WRITE_SMS" />
Steven Liu6e3c0dc2014-06-30 14:31:50 -050071
72 <provider android:name="HbpcdLookupProvider"
73 android:authorities="hbpcd_lookup"
74 android:exported="true"
75 android:singleUser="true"
76 android:multiprocess="false"
77 android:writePermission="android.permission.MODIFY_PHONE_STATE" />
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080078 </application>
79</manifest>