| Wink Saville | 0825495 | 2012-07-11 15:41:29 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| Wink Saville | 0825495 | 2012-07-11 15:41:29 -0700 | [diff] [blame] | 2 | <!-- Copyright (C) 2009 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 | 4be2694 | 2020-06-01 12:40:53 -0700 | [diff] [blame] | 18 | package="com.android.frameworks.telephonytests"> |
| Wink Saville | 0825495 | 2012-07-11 15:41:29 -0700 | [diff] [blame] | 19 | |
| Jack Yu | 4e232b9 | 2022-02-27 00:09:14 -0800 | [diff] [blame] | 20 | <application android:name="com.android.internal.telephony.TestApplication" |
| Jack Yu | 5b8bab9 | 2022-03-29 13:24:38 -0700 | [diff] [blame] | 21 | android:testOnly="true" |
| Jack Yu | 4e232b9 | 2022-02-27 00:09:14 -0800 | [diff] [blame] | 22 | android:largeHeap="true"> |
| Ashwini Oruganti | 4be2694 | 2020-06-01 12:40:53 -0700 | [diff] [blame] | 23 | <uses-library android:name="android.test.runner"/> |
| Wink Saville | 0825495 | 2012-07-11 15:41:29 -0700 | [diff] [blame] | 24 | <activity android:label="TelephonyTest" |
| Ashwini Oruganti | 4be2694 | 2020-06-01 12:40:53 -0700 | [diff] [blame] | 25 | android:name="TelephonyTest" |
| 26 | android:exported="true"> |
| Wink Saville | 0825495 | 2012-07-11 15:41:29 -0700 | [diff] [blame] | 27 | <intent-filter> |
| Ashwini Oruganti | 4be2694 | 2020-06-01 12:40:53 -0700 | [diff] [blame] | 28 | <action android:name="android.intent.action.MAIN"/> |
| Wink Saville | 0825495 | 2012-07-11 15:41:29 -0700 | [diff] [blame] | 29 | <category android:name="android.intent.category.LAUNCHER"/> |
| 30 | </intent-filter> |
| 31 | </activity> |
| 32 | </application> |
| Brett Chabot | 13da20b | 2018-12-13 19:06:20 -0800 | [diff] [blame] | 33 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
| Ashwini Oruganti | 4be2694 | 2020-06-01 12:40:53 -0700 | [diff] [blame] | 34 | android:targetPackage="com.android.frameworks.telephonytests" |
| 35 | android:label="Frameworks Telephony Tests"> |
| Wink Saville | 0825495 | 2012-07-11 15:41:29 -0700 | [diff] [blame] | 36 | </instrumentation> |
| 37 | |
| Ashwini Oruganti | 4be2694 | 2020-06-01 12:40:53 -0700 | [diff] [blame] | 38 | <uses-permission android:name="android.permission.READ_PHONE_STATE"/> |
| 39 | <uses-permission android:name="android.permission.INTERNET"/> |
| Amit Mahajan | 0a567c9 | 2015-11-24 13:24:45 -0800 | [diff] [blame] | 40 | <uses-permission android:name="android.permission.WAKE_LOCK"/> |
| Amit Mahajan | 0c3ec24 | 2016-01-14 17:44:59 -0800 | [diff] [blame] | 41 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/> |
| Amit Mahajan | ec334ad | 2016-01-19 11:51:56 -0800 | [diff] [blame] | 42 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/> |
| Malcolm Chen | 53a37b4 | 2018-01-29 15:18:40 -0800 | [diff] [blame] | 43 | <uses-permission android:name="android.permission.BIND_TELEPHONY_NETWORK_SERVICE"/> |
| Ashwini Oruganti | 4be2694 | 2020-06-01 12:40:53 -0700 | [diff] [blame] | 44 | <uses-permission android:name="android.permission.BIND_TELEPHONY_DATA_SERVICE"/> |
| Jack Yu | cfafba7 | 2021-06-15 11:26:23 -0700 | [diff] [blame] | 45 | <uses-permission android:name="android.permission.BATTERY_STATS"/> |
| Wink Saville | 0825495 | 2012-07-11 15:41:29 -0700 | [diff] [blame] | 46 | </manifest> |