| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| * Copyright (C) 2020 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| --> |
| |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="android.input.cts"> |
| |
| <uses-permission android:name="android.permission.INJECT_EVENTS"/> |
| |
| <application android:label="InputTest"> |
| <activity android:name=".OverlayActivity" |
| android:label="Overlay activity" |
| android:process=":externalProcess" |
| android:theme="@android:style/Theme.Dialog" |
| android:exported="true"> |
| <layout android:defaultHeight="100dp" |
| android:defaultWidth="100dp" |
| android:gravity="bottom" |
| android:minHeight="100dp" |
| android:minWidth="100dp" /> |
| </activity> |
| <receiver android:name=".OverlayFocusedBroadcastReceiver" android:exported="true"> |
| <intent-filter> |
| <action android:name="android.input.cts.action.OVERLAY_ACTIVITY_FOCUSED"/> |
| </intent-filter> |
| </receiver> |
| |
| <activity android:name="android.input.cts.IncompleteMotionActivity" |
| android:label="IncompleteMotion activity"> |
| </activity> |
| <activity android:name="android.input.cts.CaptureEventActivity" |
| android:label="Capture events"> |
| </activity> |
| </application> |
| |
| <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
| android:targetPackage="android.input.cts" |
| android:label="Tests for input APIs and behaviours."> |
| </instrumentation> |
| </manifest> |