blob: 2311c9b6cd2a78e2cd01cfb8188d34cfb9f4a187 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2021 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.android.imsserviceentitlement">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE"/>
<uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="com.google.android.setupwizard.SETUP_COMPAT_SERVICE"/>
<application>
<activity
android:name=".WfcActivationActivity"
android:exported="true"
android:screenOrientation="nosensor"
android:theme="@style/SudThemeGlif.Light">
</activity>
<service
android:name=".ImsEntitlementPollingService"
android:exported="true"
android:permission="android.permission.BIND_JOB_SERVICE">
</service>
<!-- START: FCM related components -->
<!-- The FcmReceiver is in GMS client lib; need to declare it here to receive FCM. -->
<receiver
android:name=".fcm.FcmRegistrationReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service
android:name=".fcm.FcmService"
android:exported="true">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<service
android:name=".fcm.FcmRegistrationService"
android:exported="true"
android:permission="android.permission.BIND_JOB_SERVICE">
</service>
<!-- END: FCM related components -->
<receiver
android:name=".ImsEntitlementReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.telephony.action.CARRIER_CONFIG_CHANGED" />
</intent-filter>
</receiver>
</application>
</manifest>