blob: 6392c26b6bf4396b6a3ba2dca19ba32c132b429e [file] [log] [blame]
Malcolm Chen0a874842018-05-01 15:48:10 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2018 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"
Ashwini Oruganti4f2fb582020-03-23 17:11:13 -070018 package="com.android.phone.testapps.telephonymanagertestapp">
Malcolm Chen0a874842018-05-01 15:48:10 -070019 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
20 <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
21 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE"/>
22 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
23 <uses-permission android:name="android.permission.READ_SMS"/>
24 <uses-permission android:name="android.permission.SEND_SMS"/>
25 <uses-permission android:name="android.permission.READ_PHONE_NUMBERS"/>
26 <uses-permission android:name="android.permission.CALL_PRIVILEGED"/>
27 <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"/>
28
Malcolm Chen0a874842018-05-01 15:48:10 -070029 <application android:label="TelephonyManagerTestApp">
Ashwini Oruganti4f2fb582020-03-23 17:11:13 -070030 <activity android:name=".TelephonyManagerTestApp"
31 android:label="TelephonyManagerTestApp"
32 android:exported="true">
Malcolm Chen0a874842018-05-01 15:48:10 -070033 <intent-filter>
Ashwini Oruganti4f2fb582020-03-23 17:11:13 -070034 <action android:name="android.intent.action.MAIN"/>
35 <action android:name="android.intent.action.SEARCH"/>
36 <category android:name="android.intent.category.DEFAULT"/>
37 <category android:name="android.intent.category.LAUNCHER"/>
Malcolm Chen0a874842018-05-01 15:48:10 -070038 </intent-filter>
Ashwini Oruganti4f2fb582020-03-23 17:11:13 -070039 <meta-data android:name="android.app.searchable"
40 android:resource="@xml/searchable">
Malcolm Chen0a874842018-05-01 15:48:10 -070041 </meta-data>
42 </activity>
43
Ashwini Oruganti4f2fb582020-03-23 17:11:13 -070044 <activity android:name=".CallingMethodActivity"
45 android:label="CallingMethodActivity"
46 android:exported="true">
Malcolm Chen0a874842018-05-01 15:48:10 -070047 <intent-filter>
Ashwini Oruganti4f2fb582020-03-23 17:11:13 -070048 <action android:name="android.intent.action.MAIN"/>
49 <category android:name="android.intent.category.DEFAULT"/>
Malcolm Chen0a874842018-05-01 15:48:10 -070050 </intent-filter>
51 </activity>
52 </application>
53</manifest>