Felipe Leme | 660327d | 2018-05-04 11:26:41 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2018 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.autofill"> |
| 18 | |
Jaineel | c56e0b3 | 2021-10-19 14:40:34 -0700 | [diff] [blame] | 19 | <uses-permission android:name="android.permission.CONTROL_KEYGUARD" /> |
| 20 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
| 21 | <uses-permission android:name="android.permission.INSTALL_PACKAGES" /> |
| 22 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
| 23 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
| 24 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
| 25 | <uses-permission android:name="android.permission.REAL_GET_TASKS" /> |
| 26 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 27 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
| 28 | |
Felipe Leme | 660327d | 2018-05-04 11:26:41 -0700 | [diff] [blame] | 29 | <application> |
| 30 | <uses-library android:name="android.test.runner" /> |
Ashwini Oruganti | d783baf | 2020-03-10 16:40:30 -0700 | [diff] [blame] | 31 | <activity android:name="android.perftests.utils.PerfTestActivity" |
| 32 | android:exported="true"> |
Felipe Leme | 660327d | 2018-05-04 11:26:41 -0700 | [diff] [blame] | 33 | <intent-filter> |
| 34 | <action android:name="com.android.perftests.core.PERFTEST" /> |
| 35 | </intent-filter> |
| 36 | </activity> |
| 37 | |
| 38 | <service |
| 39 | android:name="android.view.autofill.MyAutofillService" |
| 40 | android:label="PERF AutofillService" |
Ashwini Oruganti | d783baf | 2020-03-10 16:40:30 -0700 | [diff] [blame] | 41 | android:permission="android.permission.BIND_AUTOFILL_SERVICE" |
| 42 | android:exported="true"> |
Felipe Leme | 660327d | 2018-05-04 11:26:41 -0700 | [diff] [blame] | 43 | <intent-filter> |
| 44 | <action android:name="android.service.autofill.AutofillService" /> |
| 45 | </intent-filter> |
| 46 | </service> |
| 47 | |
| 48 | </application> |
| 49 | |
koushik panuganti | 9365891 | 2018-12-17 11:46:51 -0800 | [diff] [blame] | 50 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
Felipe Leme | 660327d | 2018-05-04 11:26:41 -0700 | [diff] [blame] | 51 | android:targetPackage="com.android.perftests.autofill"/> |
| 52 | </manifest> |