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.networkstack"
21        android:versionCode="300000000"
22        android:versionName="R-initial"
23        package="com.android.cellbroadcastservice">
24
25    <original-package android:name="com.android.cellbroadcastservice" />
26
27    <!-- gives the permission holder access to the CellBroadcastProvider -->
28    <permission android:name="com.android.cellbroadcastservice.FULL_ACCESS_CELL_BROADCAST_HISTORY"
29            android:protectionLevel="signature" />
30
31    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
32    <uses-permission android:name="android.permission.RECEIVE_SMS" />
33    <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" />
34    <uses-permission android:name="android.permission.READ_CELL_BROADCASTS" />
35    <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
36    <uses-permission android:name="android.permission.WAKE_LOCK" />
37    <uses-permission android:name="com.android.cellbroadcastservice.FULL_ACCESS_CELL_BROADCAST_HISTORY" />
38
39    <protected-broadcast android:name="android.telephony.action.AREA_INFO_UPDATED" />
40
41    <uses-sdk android:minSdkVersion="30" />
42
43    <!-- Need to set usesCleartextTraffic="true" as every APK in the process
44    must set it to avoid races. The flag is necessary for the NetworkStack
45    module. See b/161860610. -->
46    <application android:label="Cell Broadcast Service"
47        android:defaultToDeviceProtectedStorage="true"
48        android:directBootAware="true"
49        android:persistent="true"
50        android:forceQueryable="true"
51        android:process="com.android.networkstack.process"
52        android:usesCleartextTraffic="true">
53
54        <service android:name="DefaultCellBroadcastService"
55            android:process="com.android.networkstack.process"
56            android:exported="true"
57            android:permission="android.permission.BIND_CELL_BROADCAST_SERVICE">
58            <intent-filter>
59                <action android:name="android.telephony.CellBroadcastService" />
60            </intent-filter>
61        </service>
62        <provider android:name="CellBroadcastProvider"
63                android:authorities="cellbroadcasts"
64                android:exported="true"
65                android:singleUser="true"
66                android:readPermission="android.permission.READ_CELL_BROADCASTS"
67                android:multiprocess="false" />
68    </application>
69</manifest>
70