blob: 87e79473eac2a9927a5b548ffb73d56b1a70e430 [file] [log] [blame]
Ye Wen2d860e92014-05-15 13:05:08 -07001<?xml version="1.0" encoding="utf-8"?>
Ye Wenb786d3e2014-07-03 14:08:16 -07002<!-- Copyright (C) 2014 The Android Open Source Project
Ye Wen2d860e92014-05-15 13:05:08 -07003
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"
Ye Wenb786d3e2014-07-03 14:08:16 -070018 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
Ye Wen2d860e92014-05-15 13:05:08 -070019 package="com.android.mms.service"
Ye Wen4fd5a892014-06-17 16:14:48 -070020 coreApp="true"
Ye Wenb07ae2f2014-07-21 14:18:27 -070021 android:sharedUserId="android.uid.phone">
Ye Wen2d860e92014-05-15 13:05:08 -070022
Stephanie Shi810600b2018-12-06 10:55:10 -080023 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
Chad Brubakered7122a2019-02-04 08:29:12 -080024 <uses-permission android:name="android.permission.READ_SMS" />
Ye Wen3a14e462014-06-27 15:58:10 -070025 <uses-permission android:name="android.permission.WRITE_SMS"/>
Ye Wenb786d3e2014-07-03 14:08:16 -070026 <uses-permission android:name="android.permission.BROADCAST_WAP_PUSH"/>
Stephanie Shi810600b2018-12-06 10:55:10 -080027 <uses-permission android:name="android.permission.BIND_CARRIER_SERVICES"/>
Tom Taylorcdf1e7d2014-12-05 09:56:37 -080028 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/>
Ye Wen2d860e92014-05-15 13:05:08 -070029
Sahin Caliskana5ee8fd2019-04-29 14:03:13 -070030 <protected-broadcast android:name="android.settings.ENABLE_MMS_DATA_REQUEST"/>
31
Ye Wenb07ae2f2014-07-21 14:18:27 -070032 <application android:label="MmsService"
Alex Klyubin6c42a482015-05-20 11:05:49 -070033 android:process="com.android.phone"
34 android:usesCleartextTraffic="true">
Ye Wen2d860e92014-05-15 13:05:08 -070035
36 <service android:name=".MmsService"
37 android:enabled="true"
38 android:exported="true"/>
39
Ye Wen2d860e92014-05-15 13:05:08 -070040 </application>
41</manifest>