1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools" 4 package="com.google.android.telephony.satellite"> 5 <application> 6 <service android:name=".CFSatelliteService" 7 android:exported="true" 8 android:directBootAware="true" 9 android:persistent="true" 10 android:permission="android.permission.BIND_SATELLITE_SERVICE"> 11 <intent-filter> 12 <action android:name="android.telephony.satellite.SatelliteService" /> 13 </intent-filter> 14 </service> 15 </application> 16</manifest> 17