blob: de2a3f2c4bfceb999e210592c40dd679c8ecc703 [file] [log] [blame]
Felipe Leme660327d2018-05-04 11:26:41 -07001<?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
Jaineelc56e0b32021-10-19 14:40:34 -070019 <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 Leme660327d2018-05-04 11:26:41 -070029 <application>
30 <uses-library android:name="android.test.runner" />
Ashwini Orugantid783baf2020-03-10 16:40:30 -070031 <activity android:name="android.perftests.utils.PerfTestActivity"
32 android:exported="true">
Felipe Leme660327d2018-05-04 11:26:41 -070033 <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 Orugantid783baf2020-03-10 16:40:30 -070041 android:permission="android.permission.BIND_AUTOFILL_SERVICE"
42 android:exported="true">
Felipe Leme660327d2018-05-04 11:26:41 -070043 <intent-filter>
44 <action android:name="android.service.autofill.AutofillService" />
45 </intent-filter>
46 </service>
47
48 </application>
49
koushik panuganti93658912018-12-17 11:46:51 -080050 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
Felipe Leme660327d2018-05-04 11:26:41 -070051 android:targetPackage="com.android.perftests.autofill"/>
52</manifest>