blob: 914adc40194de94902c8ca28b012b831e1270dea [file] [log] [blame]
Siarhei Vishniakou57dff762020-07-28 23:11:40 -05001<?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 Vishniakou57dff762020-07-28 23:11:40 -050019
Prabir Pradhan19755e32023-07-06 16:54:27 +000020 <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 Manningba6858d2024-05-20 18:10:33 +000025 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
26 <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
Prabir Pradhan19755e32023-07-06 16:54:27 +000027
28 <application android:label="InputTest" android:debuggable="true">
Siarhei Vishniakou57dff762020-07-28 23:11:40 -050029
30 <activity android:name=".UnresponsiveGestureMonitorActivity"
31 android:label="Unresponsive gesture monitor"
32 android:process=":externalProcess">
33 </activity>
34
Prabir Pradhan00f0da02024-09-05 16:28:16 +000035 <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 Vishniakou57dff762020-07-28 23:11:40 -050043 </application>
44 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
45 android:targetPackage="com.android.test.input"
46 android:label="Input Tests"/>
47</manifest>