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" |
Ben Komalo | 9dd4ab5 | 2011-09-23 15:12:47 -0700 | [diff] [blame] | 19 | coreApp="true" |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 20 | android:sharedUserId="android.uid.phone"> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 21 | |
Chih-Chung Chang | 17e36a2 | 2009-09-30 14:04:51 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 23 | |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 24 | <application android:process="com.android.phone" |
| 25 | android:allowClearUserData="false" |
Christopher Tate | bd2c26c | 2011-07-22 15:11:17 -0700 | [diff] [blame] | 26 | android:allowBackup="false" |
Eric Fischer | 04178b0 | 2009-06-16 16:35:17 -0700 | [diff] [blame] | 27 | android:label="@string/app_label" |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 28 | android:icon="@drawable/ic_launcher_phone"> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 29 | |
| 30 | <provider android:name="TelephonyProvider" |
| 31 | android:authorities="telephony" |
Nick Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame^] | 32 | android:exported="true" |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 33 | android:multiprocess="true" /> |
| 34 | |
| 35 | <provider android:name="SmsProvider" |
| 36 | android:authorities="sms" |
| 37 | android:multiprocess="true" |
Nick Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame^] | 38 | android:exported="true" |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 39 | 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 Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame^] | 45 | android:exported="true" |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 46 | android:readPermission="android.permission.READ_SMS" |
| 47 | android:writePermission="android.permission.WRITE_SMS"> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 48 | <grant-uri-permission android:pathPrefix="/part/" /> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 49 | <grant-uri-permission android:pathPrefix="/drm/" /> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 50 | </provider> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 51 | |
| 52 | <provider android:name="MmsSmsProvider" |
| 53 | android:authorities="mms-sms" |
| 54 | android:multiprocess="true" |
Nick Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame^] | 55 | android:exported="true" |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 56 | android:readPermission="android.permission.READ_SMS" |
| 57 | android:writePermission="android.permission.WRITE_SMS" /> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 58 | </application> |
| 59 | </manifest> |