1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2021 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<manifest xmlns:android="http://schemas.android.com/apk/res/android" 17 xmlns:tools="http://schemas.android.com/tools" 18 package="com.android.imsserviceentitlement"> 19 20 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 21 <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/> 22 <uses-permission android:name="android.permission.INTERNET"/> 23 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE"/> 24 <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> 25 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> 26 <uses-permission android:name="android.permission.WAKE_LOCK"/> 27 <uses-permission android:name="com.google.android.setupwizard.SETUP_COMPAT_SERVICE"/> 28 29 <application> 30 <activity 31 android:name=".WfcActivationActivity" 32 android:exported="true" 33 android:screenOrientation="nosensor" 34 android:theme="@style/SudThemeGlif.Light"> 35 </activity> 36 37 <service 38 android:name=".ImsEntitlementPollingService" 39 android:exported="true" 40 android:permission="android.permission.BIND_JOB_SERVICE"> 41 </service> 42 43 <!-- START: FCM related components --> 44 <!-- The FcmReceiver is in GMS client lib; need to declare it here to receive FCM. --> 45 <receiver 46 android:name=".fcm.FcmRegistrationReceiver" 47 android:exported="true"> 48 <intent-filter> 49 <action android:name="android.intent.action.BOOT_COMPLETED" /> 50 </intent-filter> 51 </receiver> 52 53 <service 54 android:name=".fcm.FcmService" 55 android:exported="true"> 56 <intent-filter> 57 <action android:name="com.google.firebase.MESSAGING_EVENT" /> 58 </intent-filter> 59 </service> 60 61 <service 62 android:name=".fcm.FcmRegistrationService" 63 android:exported="true" 64 android:permission="android.permission.BIND_JOB_SERVICE"> 65 </service> 66 <!-- END: FCM related components --> 67 68 <receiver 69 android:name=".ImsEntitlementReceiver" 70 android:exported="true"> 71 <intent-filter> 72 <action android:name="android.telephony.action.CARRIER_CONFIG_CHANGED" /> 73 </intent-filter> 74 </receiver> 75 </application> 76 77</manifest> 78