blob: 1ac8e19c2bc6c1463b566f736d5b666dbc78680f [file] [log] [blame]
Helen Qindb3645e2022-09-21 05:02:34 +00001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4 * Copyright (c) 2017 Google Inc.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18-->
19<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Reema Bajwaa8d80312023-09-14 23:31:14 +000020 package="com.android.credentialmanager">
Helen Qindb3645e2022-09-21 05:02:34 +000021
Helen Qinaaba73d2023-03-28 00:30:01 +000022 <uses-permission android:name="android.permission.LAUNCH_CREDENTIAL_SELECTOR"/>
Helen Qindb3645e2022-09-21 05:02:34 +000023 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
Arpanca9b3462024-03-22 18:46:15 +000024 <uses-permission android:name="android.permission.SET_BIOMETRIC_DIALOG_ADVANCED"/>
Helen Qindb3645e2022-09-21 05:02:34 +000025 <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/>
Arpan7328d692023-09-18 17:35:07 +000026 <uses-permission android:name="android.permission.ACCESS_INSTANT_APPS" />
Arpan Kaphle58e33aa2024-03-06 05:56:08 +000027 <uses-permission android:name="android.permission.USE_BIOMETRIC" />
Helen Qindb3645e2022-09-21 05:02:34 +000028
29 <application
Reema Bajwaa8d80312023-09-14 23:31:14 +000030 android:allowBackup="true"
31 android:dataExtractionRules="@xml/data_extraction_rules"
32 android:fullBackupContent="@xml/backup_rules"
33 android:icon="@mipmap/ic_launcher"
Helen Qindb3645e2022-09-21 05:02:34 +000034 android:label="@string/app_name"
Reema Bajwaa8d80312023-09-14 23:31:14 +000035 android:roundIcon="@mipmap/ic_launcher_round"
36 android:supportsRtl="true"
Helen Qindb3645e2022-09-21 05:02:34 +000037 android:theme="@style/Theme.CredentialSelector">
Reema Bajwaa8d80312023-09-14 23:31:14 +000038
39 <activity
40 android:name=".CredentialSelectorActivity"
41 android:exported="true"
42 android:permission="android.permission.LAUNCH_CREDENTIAL_SELECTOR"
43 android:launchMode="singleTop"
44 android:label="@string/app_name"
45 android:excludeFromRecents="true"
46 android:theme="@style/Theme.CredentialSelector">
47 </activity>
48 <service
49 android:name=".autofill.CredentialAutofillService"
50 android:exported="false"
51 android:permission="android.permission.BIND_AUTOFILL_SERVICE">
52 <meta-data
53 android:name="android.autofill"
54 android:resource="@xml/autofill_service_configuration"/>
55 <intent-filter>
56 <action android:name="android.service.autofill.AutofillService"/>
57 </intent-filter>
58 </service>
59 </application>
Helen Qindb3645e2022-09-21 05:02:34 +000060
61</manifest>