blob: d15b20bbe7876442d752cfbeb80adcf7853f7835 [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
Chih-Chung Chang17e36a22009-09-30 14:04:51 -070022 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
23
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080024 <application android:process="com.android.phone"
25 android:allowClearUserData="false"
Christopher Tatebd2c26c2011-07-22 15:11:17 -070026 android:allowBackup="false"
Eric Fischer04178b02009-06-16 16:35:17 -070027 android:label="@string/app_label"
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080028 android:icon="@drawable/ic_launcher_phone">
Wei Huangb88772a2009-07-23 09:54:01 -070029
30 <provider android:name="TelephonyProvider"
31 android:authorities="telephony"
Nick Kralevichfddd8092012-07-28 16:06:30 -070032 android:exported="true"
Wei Huangb88772a2009-07-23 09:54:01 -070033 android:multiprocess="true" />
34
35 <provider android:name="SmsProvider"
36 android:authorities="sms"
37 android:multiprocess="true"
Nick Kralevichfddd8092012-07-28 16:06:30 -070038 android:exported="true"
Wei Huangb88772a2009-07-23 09:54:01 -070039 android:readPermission="android.permission.READ_SMS"
40 android:writePermission="android.permission.WRITE_SMS" />
41
42 <provider android:name="MmsProvider"
43 android:authorities="mms"
44 android:multiprocess="true"
Nick Kralevichfddd8092012-07-28 16:06:30 -070045 android:exported="true"
Wei Huangb88772a2009-07-23 09:54:01 -070046 android:readPermission="android.permission.READ_SMS"
47 android:writePermission="android.permission.WRITE_SMS">
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080048 <grant-uri-permission android:pathPrefix="/part/" />
Wei Huangb88772a2009-07-23 09:54:01 -070049 <grant-uri-permission android:pathPrefix="/drm/" />
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080050 </provider>
Wei Huangb88772a2009-07-23 09:54:01 -070051
52 <provider android:name="MmsSmsProvider"
53 android:authorities="mms-sms"
54 android:multiprocess="true"
Nick Kralevichfddd8092012-07-28 16:06:30 -070055 android:exported="true"
Wei Huangb88772a2009-07-23 09:54:01 -070056 android:readPermission="android.permission.READ_SMS"
57 android:writePermission="android.permission.WRITE_SMS" />
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080058 </application>
59</manifest>