Malcolm Chen | 0a87484 | 2018-05-01 15:48:10 -0700 | [diff] [blame] | 1 | <?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 Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 18 | package="com.android.phone.testapps.telephonymanagertestapp"> |
Malcolm Chen | 0a87484 | 2018-05-01 15:48:10 -0700 | [diff] [blame] | 19 | <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 Chen | 0a87484 | 2018-05-01 15:48:10 -0700 | [diff] [blame] | 29 | <application android:label="TelephonyManagerTestApp"> |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 30 | <activity android:name=".TelephonyManagerTestApp" |
| 31 | android:label="TelephonyManagerTestApp" |
| 32 | android:exported="true"> |
Malcolm Chen | 0a87484 | 2018-05-01 15:48:10 -0700 | [diff] [blame] | 33 | <intent-filter> |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 34 | <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 Chen | 0a87484 | 2018-05-01 15:48:10 -0700 | [diff] [blame] | 38 | </intent-filter> |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 39 | <meta-data android:name="android.app.searchable" |
| 40 | android:resource="@xml/searchable"> |
Malcolm Chen | 0a87484 | 2018-05-01 15:48:10 -0700 | [diff] [blame] | 41 | </meta-data> |
| 42 | </activity> |
| 43 | |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 44 | <activity android:name=".CallingMethodActivity" |
| 45 | android:label="CallingMethodActivity" |
| 46 | android:exported="true"> |
Malcolm Chen | 0a87484 | 2018-05-01 15:48:10 -0700 | [diff] [blame] | 47 | <intent-filter> |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 48 | <action android:name="android.intent.action.MAIN"/> |
| 49 | <category android:name="android.intent.category.DEFAULT"/> |
Malcolm Chen | 0a87484 | 2018-05-01 15:48:10 -0700 | [diff] [blame] | 50 | </intent-filter> |
| 51 | </activity> |
| 52 | </application> |
| 53 | </manifest> |