• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?><!--
2  ~ Copyright (C) 2024 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
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18    package="com.android.phone.testapps.satellitetestapp">
19
20    <application
21        android:networkSecurityConfig="@xml/network_security_config"
22        android:label="SatelliteTestApp">
23        <activity
24            android:name=".SatelliteTestApp"
25            android:exported="true"
26            android:label="SatelliteTestApp">
27            <intent-filter>
28                <action android:name="android.intent.action.MAIN" />
29
30                <category android:name="android.intent.category.DEFAULT" />
31                <category android:name="android.intent.category.LAUNCHER" />
32            </intent-filter>
33        </activity>
34        <activity android:name=".SatelliteControl" />
35        <activity android:name=".Datagram" />
36        <activity android:name=".Provisioning" />
37        <activity android:name=".MultipleSendReceive" />
38        <activity android:name=".SendReceive" />
39        <activity android:name=".NbIotSatellite" />
40        <activity android:name=".TestSatelliteWrapper" />
41
42        <receiver
43            android:name=".SatelliteTestAppReceiver"
44            android:exported="true">
45            <intent-filter>
46                <action android:name="com.android.phone.testapps.satellitetestapp.RECEIVER" />
47            </intent-filter>
48        </receiver>
49
50        <service
51            android:name=".TestSatelliteService"
52            android:directBootAware="true"
53            android:exported="true"
54            android:permission="android.permission.BIND_SATELLITE_SERVICE"
55            android:persistent="true">
56            <intent-filter>
57                <action android:name="android.telephony.satellite.SatelliteService" />
58            </intent-filter>
59        </service>
60
61        <meta-data
62            android:name="android.telephony.PROPERTY_SATELLITE_DATA_OPTIMIZED"
63            android:value="true"/>
64    </application>
65
66    <uses-permission android:name="android.permission.SATELLITE_COMMUNICATION" />
67    <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" />
68    <uses-permission android:name="android.permission.SEND_SMS" />
69    <uses-permission android:name="android.permission.BIND_SATELLITE_SERVICE" />
70    <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
71    <uses-permission android:name="android.permission.WRITE_SETTINGS" />
72    <uses-permission android:name="android.permission.INTERNET" />
73</manifest>
74