Taran Singh | bf33706 | 2020-11-03 11:46:37 -0800 | [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 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 17 | package="com.android.perftests.inputmethod"> |
| 18 | |
| 19 | <application> |
| 20 | <uses-library android:name="android.test.runner" /> |
| 21 | <activity android:name="android.perftests.utils.PerfTestActivity" |
| 22 | android:exported="true"> |
| 23 | <intent-filter> |
| 24 | <action android:name="com.android.perftests.core.PERFTEST" /> |
| 25 | </intent-filter> |
| 26 | </activity> |
| 27 | <service android:name="android.inputmethod.ImePerfTest$BaselineIme" |
| 28 | android:process=":BaselineIME" |
| 29 | android:label="Baseline IME" |
| 30 | android:permission="android.permission.BIND_INPUT_METHOD" |
| 31 | android:exported="true"> |
| 32 | <intent-filter> |
| 33 | <action android:name="android.view.InputMethod"/> |
| 34 | </intent-filter> |
| 35 | <meta-data android:name="android.view.im" |
| 36 | android:resource="@xml/simple_method"/> |
| 37 | </service> |
| 38 | </application> |
| 39 | |
| 40 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
| 41 | android:targetPackage="com.android.perftests.inputmethod"> |
| 42 | <meta-data android:name="listener" android:value="android.inputmethod.ImePerfRunPrecondition" /> |
| 43 | </instrumentation> |
| 44 | </manifest> |