1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 4 * Copyright (C) 2019 The Android Open Source Project 5 * 6 * Licensed under the Apache License, Version 2.0 (the "License"); 7 * you may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, software 13 * distributed under the License is distributed on an "AS IS" BASIS, 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 * See the License for the specific language governing permissions and 16 * limitations under the License. 17 */ 18--> 19<manifest xmlns:android="http://schemas.android.com/apk/res/android" 20 android:sharedUserId="android.uid.phone" 21 package="com.android.cellbroadcastservice"> 22 23 <original-package android:name="com.android.cellbroadcastservice" /> 24 25 <!-- gives the permission holder access to the CellBroadcastProvider --> 26 <permission android:name="com.android.cellbroadcastservice.FULL_ACCESS_CELL_BROADCAST_HISTORY" 27 android:protectionLevel="signature" /> 28 29 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 30 <uses-permission android:name="android.permission.RECEIVE_SMS" /> 31 <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" /> 32 <uses-permission android:name="android.permission.READ_CELL_BROADCASTS" /> 33 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> 34 <uses-permission android:name="android.permission.WAKE_LOCK" /> 35 <uses-permission android:name="com.android.cellbroadcastservice.FULL_ACCESS_CELL_BROADCAST_HISTORY" /> 36 37 <protected-broadcast android:name="android.telephony.action.AREA_INFO_UPDATED" /> 38 39 <uses-sdk android:minSdkVersion="29"/> 40 41 <application android:label="Cell Broadcast Service" 42 android:defaultToDeviceProtectedStorage="true" 43 android:directBootAware="true" 44 android:persistent="true" 45 android:forceQueryable="true" 46 android:process="com.android.phone"> 47 48 <service android:name="DefaultCellBroadcastService" 49 android:process="com.android.phone" 50 android:exported="true" 51 android:permission="android.permission.BIND_CELL_BROADCAST_SERVICE"> 52 <intent-filter> 53 <action android:name="android.telephony.CellBroadcastService" /> 54 </intent-filter> 55 </service> 56 <provider android:name="CellBroadcastProvider" 57 android:authorities="cellbroadcasts" 58 android:exported="true" 59 android:singleUser="true" 60 android:readPermission="android.permission.READ_CELL_BROADCASTS" 61 android:multiprocess="false" /> 62 </application> 63</manifest> 64