Siarhei Vishniakou | 57dff76 | 2020-07-28 23:11:40 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2020 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" |
| 18 | package="com.android.test.input"> |
Siarhei Vishniakou | 57dff76 | 2020-07-28 23:11:40 -0500 | [diff] [blame] | 19 | |
Prabir Pradhan | 19755e3 | 2023-07-06 16:54:27 +0000 | [diff] [blame] | 20 | <uses-permission android:name="android.permission.INJECT_EVENTS"/> |
| 21 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/> |
| 22 | <uses-permission android:name="android.permission.MONITOR_INPUT"/> |
| 23 | <uses-permission android:name="android.permission.READ_DEVICE_CONFIG"/> |
| 24 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/> |
Pat Manning | ba6858d | 2024-05-20 18:10:33 +0000 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
| 26 | <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/> |
Prabir Pradhan | 19755e3 | 2023-07-06 16:54:27 +0000 | [diff] [blame] | 27 | |
| 28 | <application android:label="InputTest" android:debuggable="true"> |
Siarhei Vishniakou | 57dff76 | 2020-07-28 23:11:40 -0500 | [diff] [blame] | 29 | |
| 30 | <activity android:name=".UnresponsiveGestureMonitorActivity" |
| 31 | android:label="Unresponsive gesture monitor" |
| 32 | android:process=":externalProcess"> |
| 33 | </activity> |
| 34 | |
Prabir Pradhan | 00f0da0 | 2024-09-05 16:28:16 +0000 | [diff] [blame] | 35 | <activity android:name="com.android.test.input.CaptureEventActivity" |
| 36 | android:label="Capture events" |
| 37 | android:configChanges="touchscreen|uiMode|orientation|screenSize|screenLayout|keyboardHidden|uiMode|navigation|keyboard|density|fontScale|layoutDirection|locale|mcc|mnc|smallestScreenSize" |
| 38 | android:enableOnBackInvokedCallback="false" |
| 39 | android:turnScreenOn="true" |
| 40 | android:exported="true"> |
| 41 | </activity> |
| 42 | |
Siarhei Vishniakou | 57dff76 | 2020-07-28 23:11:40 -0500 | [diff] [blame] | 43 | </application> |
| 44 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
| 45 | android:targetPackage="com.android.test.input" |
| 46 | android:label="Input Tests"/> |
| 47 | </manifest> |