blob: 4a6076bb9d6e6379378e7374c96521703206e87a [file] [log] [blame]
Saloni731fd5e2023-04-04 13:59:12 +00001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ~ Copyright (C) 2023 The Android Open Source Project
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License
16 -->
17
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19 package="com.android.phone.testapps.satellitetestapp">
20 <uses-permission android:name="android.permission.BIND_SATELLITE_SERVICE"/>
21 <uses-permission android:name="android.permission.SATELLITE_COMMUNICATION"/>
22 <application android:label="SatelliteTestApp">
23 <activity android:name=".SatelliteTestApp"
24 android:label="SatelliteTestApp"
25 android:exported="true">
26 <intent-filter>
27 <action android:name="android.intent.action.MAIN"/>
28 <category android:name="android.intent.category.DEFAULT"/>
29 <category android:name="android.intent.category.LAUNCHER"/>
30 </intent-filter>
31 </activity>
32
33 <service android:name=".TestSatelliteService"
34 android:directBootAware="true"
35 android:persistent="true"
36 android:permission="android.permission.BIND_SATELLITE_SERVICE"
37 android:exported="true">
38 <intent-filter>
39 <action android:name="android.telephony.satellite.SatelliteService"/>
40 </intent-filter>
41 </service>
42
43 <activity android:name=".SatelliteControl" />
Saloni731fd5e2023-04-04 13:59:12 +000044 <activity android:name=".Datagram" />
45 <activity android:name=".Provisioning" />
Salonif96ee492023-06-16 06:14:23 +000046 <activity android:name=".MultipleSendReceive" />
Salonib239c962023-07-03 12:52:29 +000047 <activity android:name=".SendReceive" />
Saloni731fd5e2023-04-04 13:59:12 +000048 </application>
49</manifest>