blob: 6076e9b7e5e4d79a79a62eb6bceb5bfe5f47cab6 [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
23 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Ye Wen3a14e462014-06-27 15:58:10 -070024 <uses-permission android:name="android.permission.READ_SMS"/>
25 <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"/>
Zach Johnson1f2dfed2015-05-15 15:14:14 -070027 <uses-permission android:name="android.permission.BIND_CARRIER_SERVICES" />
28 <!-- BIND_CARRIER_MESSAGING_SERVICE has been deprecated in favor of BIND_CARRIER_SERVICES. -->
Abhijith Shastry1b2066c2014-10-31 19:02:28 -070029 <uses-permission android:name="android.permission.BIND_CARRIER_MESSAGING_SERVICE"/>
Tom Taylorcdf1e7d2014-12-05 09:56:37 -080030 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/>
Ye Wen2d860e92014-05-15 13:05:08 -070031
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>