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 | |
Jake Hamby | 1d71463 | 2013-09-18 12:19:33 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.RECEIVE_SMS" /> |
Chih-Chung Chang | 17e36a2 | 2009-09-30 14:04:51 -0700 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 24 | |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 25 | <application android:process="com.android.phone" |
| 26 | android:allowClearUserData="false" |
Christopher Tate | bd2c26c | 2011-07-22 15:11:17 -0700 | [diff] [blame] | 27 | android:allowBackup="false" |
Eric Fischer | 04178b0 | 2009-06-16 16:35:17 -0700 | [diff] [blame] | 28 | android:label="@string/app_label" |
Jason Chen | 9052dc2 | 2012-10-12 14:27:39 -0700 | [diff] [blame] | 29 | android:icon="@mipmap/ic_launcher_phone"> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 30 | |
| 31 | <provider android:name="TelephonyProvider" |
| 32 | android:authorities="telephony" |
Nick Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame] | 33 | android:exported="true" |
Jake Hamby | 1d71463 | 2013-09-18 12:19:33 -0700 | [diff] [blame] | 34 | android:multiprocess="false" /> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 35 | |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 36 | <!-- 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 Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 39 | <provider android:name="SmsProvider" |
| 40 | android:authorities="sms" |
Jake Hamby | 1d71463 | 2013-09-18 12:19:33 -0700 | [diff] [blame] | 41 | android:multiprocess="false" |
Nick Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame] | 42 | android:exported="true" |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 43 | android:singleUser="true" |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 44 | android:readPermission="android.permission.READ_SMS" |
| 45 | android:writePermission="android.permission.WRITE_SMS" /> |
| 46 | |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 47 | <!-- 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 Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 50 | <provider android:name="MmsProvider" |
| 51 | android:authorities="mms" |
Jake Hamby | 1d71463 | 2013-09-18 12:19:33 -0700 | [diff] [blame] | 52 | android:multiprocess="false" |
Nick Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame] | 53 | android:exported="true" |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 54 | android:singleUser="true" |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 55 | android:readPermission="android.permission.READ_SMS" |
| 56 | android:writePermission="android.permission.WRITE_SMS"> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 57 | <grant-uri-permission android:pathPrefix="/part/" /> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 58 | <grant-uri-permission android:pathPrefix="/drm/" /> |
The Android Open Source Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 59 | </provider> |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 60 | |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 61 | <!-- 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 Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 64 | <provider android:name="MmsSmsProvider" |
| 65 | android:authorities="mms-sms" |
Jake Hamby | 1d71463 | 2013-09-18 12:19:33 -0700 | [diff] [blame] | 66 | android:multiprocess="false" |
Nick Kralevich | fddd809 | 2012-07-28 16:06:30 -0700 | [diff] [blame] | 67 | android:exported="true" |
Amith Yamasani | 2053d2e | 2014-08-05 10:22:46 -0700 | [diff] [blame] | 68 | android:singleUser="true" |
Wei Huang | b88772a | 2009-07-23 09:54:01 -0700 | [diff] [blame] | 69 | android:readPermission="android.permission.READ_SMS" |
| 70 | android:writePermission="android.permission.WRITE_SMS" /> |
Steven Liu | 6e3c0dc | 2014-06-30 14:31:50 -0500 | [diff] [blame^] | 71 | |
| 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 Project | 7236c3a | 2009-03-03 19:32:44 -0800 | [diff] [blame] | 78 | </application> |
| 79 | </manifest> |