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 |
| 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 Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 19 | android:sharedUserId="android.uid.phone"> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 20 | |
Chih-Chung Chang | 17e36a2 | 2009-09-30 14:04:51 -0700 | [diff] [blame^] | 21 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 22 | |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 23 | <application android:process="com.android.phone" |
| 24 | android:allowClearUserData="false" |
Eric Fischer | 04178b0 | 2009-06-16 16:35:17 -0700 | [diff] [blame] | 25 | android:label="@string/app_label" |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 26 | android:icon="@drawable/ic_launcher_phone"> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 27 | |
| 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 Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 43 | <grant-uri-permission android:pathPrefix="/part/" /> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 44 | <grant-uri-permission android:pathPrefix="/drm/" /> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 45 | </provider> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 46 | |
| 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 Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 52 | </application> |
| 53 | </manifest> |