blob: 3b723ddf811fe5ca7c199a4a62b9699337c346fb [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"/>
25
26 <application android:label="InputTest" android:debuggable="true">
Siarhei Vishniakou57dff762020-07-28 23:11:40 -050027
28 <activity android:name=".UnresponsiveGestureMonitorActivity"
29 android:label="Unresponsive gesture monitor"
30 android:process=":externalProcess">
31 </activity>
32
Siarhei Vishniakou57dff762020-07-28 23:11:40 -050033 </application>
34 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
35 android:targetPackage="com.android.test.input"
36 android:label="Input Tests"/>
37</manifest>