blob: e2d2581721aa3e914cc73a6d84f885ea7725d8c6 [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"
Wei Huangb88772a2009-07-23 09:54:01 -070019 android:sharedUserId="android.uid.phone">
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080020
Chih-Chung Chang17e36a22009-09-30 14:04:51 -070021 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
22
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080023 <application android:process="com.android.phone"
24 android:allowClearUserData="false"
Eric Fischer04178b02009-06-16 16:35:17 -070025 android:label="@string/app_label"
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080026 android:icon="@drawable/ic_launcher_phone">
Wei Huangb88772a2009-07-23 09:54:01 -070027
28 <provider android:name="TelephonyProvider"
29 android:authorities="telephony"
30 android:multiprocess="true" />
31
32 <provider android:name="SmsProvider"
33 android:authorities="sms"
34 android:multiprocess="true"
35 android:readPermission="android.permission.READ_SMS"
36 android:writePermission="android.permission.WRITE_SMS" />
37
38 <provider android:name="MmsProvider"
39 android:authorities="mms"
40 android:multiprocess="true"
41 android:readPermission="android.permission.READ_SMS"
42 android:writePermission="android.permission.WRITE_SMS">
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080043 <grant-uri-permission android:pathPrefix="/part/" />
Wei Huangb88772a2009-07-23 09:54:01 -070044 <grant-uri-permission android:pathPrefix="/drm/" />
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080045 </provider>
Wei Huangb88772a2009-07-23 09:54:01 -070046
47 <provider android:name="MmsSmsProvider"
48 android:authorities="mms-sms"
49 android:multiprocess="true"
50 android:readPermission="android.permission.READ_SMS"
51 android:writePermission="android.permission.WRITE_SMS" />
The Android Open Source Project7236c3a2009-03-03 19:32:44 -080052 </application>
53</manifest>