Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2013 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" |
Ihab Awad | c17294c | 2014-08-04 19:23:37 -0700 | [diff] [blame] | 18 | coreApp="true" |
Tyler Gunn | 7cc70b4 | 2014-09-12 22:17:27 -0700 | [diff] [blame] | 19 | package="com.android.server.telecom.tests" |
Tyler Gunn | 8425357 | 2014-09-02 14:50:05 -0700 | [diff] [blame] | 20 | android:debuggable="true"> |
Yorke Lee | 7c65acd | 2014-06-04 11:11:03 -0700 | [diff] [blame] | 21 | |
Yorke Lee | 1cbe702 | 2015-08-31 18:22:15 -0700 | [diff] [blame] | 22 | <uses-sdk |
| 23 | android:minSdkVersion="23" |
| 24 | android:targetSdkVersion="23" /> |
| 25 | |
Ihab Awad | b63b57e | 2015-03-22 22:12:28 -0700 | [diff] [blame] | 26 | <!-- TODO: Needed because we call BluetoothAdapter.getDefaultAdapter() statically, and |
| 27 | BluetoothAdapter is a final class. --> |
| 28 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
wescande | 6362811 | 2021-08-16 16:47:48 +0200 | [diff] [blame^] | 29 | <uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED" /> |
Ihab Awad | b63b57e | 2015-03-22 22:12:28 -0700 | [diff] [blame] | 30 | |
| 31 | <!-- TODO: Needed because we call ActivityManager.getCurrentUser() statically. --> |
| 32 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
Hall Liu | 9156bae | 2016-12-01 17:40:29 -0800 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
Ihab Awad | b63b57e | 2015-03-22 22:12:28 -0700 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
Tyler Gunn | b1a95a7 | 2014-07-23 14:08:19 -0700 | [diff] [blame] | 35 | |
Tyler Gunn | 42ef808 | 2015-11-24 15:34:34 -0800 | [diff] [blame] | 36 | <!-- Used to access TelephonyManager APIs --> |
| 37 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
tonyzhu | 919ffa9 | 2018-10-01 16:28:52 +0800 | [diff] [blame] | 38 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Tyler Gunn | 42ef808 | 2015-11-24 15:34:34 -0800 | [diff] [blame] | 39 | |
Kurt Dresner | 933add5 | 2020-10-01 17:53:32 -0700 | [diff] [blame] | 40 | <!-- Used to access Projection State APIs --> |
| 41 | <uses-permission android:name="android.permission.READ_PROJECTION_STATE"/> |
| 42 | |
Grace Jia | ba2e174 | 2021-04-21 17:01:53 -0700 | [diff] [blame] | 43 | <!-- Used to access PlatformCompat APIs --> |
| 44 | <uses-permission android:name="android.permission.READ_COMPAT_CHANGE_CONFIG" /> |
| 45 | <uses-permission android:name="android.permission.LOG_COMPAT_CHANGE" /> |
| 46 | |
Tyler Gunn | 8425357 | 2014-09-02 14:50:05 -0700 | [diff] [blame] | 47 | <application android:label="@string/app_name" |
| 48 | android:debuggable="true"> |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 49 | <uses-library android:name="android.test.runner" /> |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 50 | </application> |
| 51 | |
| 52 | <!-- |
| 53 | The prefered way is to use 'runtest': |
Tyler Gunn | 7cc70b4 | 2014-09-12 22:17:27 -0700 | [diff] [blame] | 54 | runtest telecom-unit |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 55 | |
| 56 | runtest is a wrapper around 'adb shell'. The low level shell command is: |
Tyler Gunn | 7cc70b4 | 2014-09-12 22:17:27 -0700 | [diff] [blame] | 57 | adb shell am instrument -w com.android.server.telecom.tests/android.test.InstrumentationTestRunner |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 58 | |
| 59 | To run a single test case: |
Santos Cordon | f78a72f | 2016-01-21 22:10:32 +0000 | [diff] [blame] | 60 | adb shell am instrument -w -e class com.android.server.telecom.tests.unit.FooUnitTest \ |
| 61 | com.android.server.telecom.tests/android.test.InstrumentationTestRunner |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 62 | --> |
KOUSHIK PANUGANTI | 7d11166 | 2019-03-15 15:46:39 -0700 | [diff] [blame] | 63 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
Ihab Awad | b63b57e | 2015-03-22 22:12:28 -0700 | [diff] [blame] | 64 | android:targetPackage="com.android.server.telecom.tests" |
| 65 | android:label="Telecomm application tests" |
Tyler Gunn | 8425357 | 2014-09-02 14:50:05 -0700 | [diff] [blame] | 66 | android:debuggable="true"/> |
Santos Cordon | 76faae5 | 2013-12-12 18:55:50 -0800 | [diff] [blame] | 67 | </manifest> |