| Helen Qin | db3645e | 2022-09-21 05:02:34 +0000 | [diff] [blame] | 1 | <?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 Bajwa | a8d8031 | 2023-09-14 23:31:14 +0000 | [diff] [blame] | 20 | package="com.android.credentialmanager"> |
| Helen Qin | db3645e | 2022-09-21 05:02:34 +0000 | [diff] [blame] | 21 | |
| Helen Qin | aaba73d | 2023-03-28 00:30:01 +0000 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.LAUNCH_CREDENTIAL_SELECTOR"/> |
| Helen Qin | db3645e | 2022-09-21 05:02:34 +0000 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/> |
| Arpan | ca9b346 | 2024-03-22 18:46:15 +0000 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.SET_BIOMETRIC_DIALOG_ADVANCED"/> |
| Helen Qin | db3645e | 2022-09-21 05:02:34 +0000 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/> |
| Arpan | 7328d69 | 2023-09-18 17:35:07 +0000 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.ACCESS_INSTANT_APPS" /> |
| Arpan Kaphle | 58e33aa | 2024-03-06 05:56:08 +0000 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.USE_BIOMETRIC" /> |
| Helen Qin | db3645e | 2022-09-21 05:02:34 +0000 | [diff] [blame] | 28 | |
| 29 | <application |
| Reema Bajwa | a8d8031 | 2023-09-14 23:31:14 +0000 | [diff] [blame] | 30 | android:allowBackup="true" |
| 31 | android:dataExtractionRules="@xml/data_extraction_rules" |
| 32 | android:fullBackupContent="@xml/backup_rules" |
| 33 | android:icon="@mipmap/ic_launcher" |
| Helen Qin | db3645e | 2022-09-21 05:02:34 +0000 | [diff] [blame] | 34 | android:label="@string/app_name" |
| Reema Bajwa | a8d8031 | 2023-09-14 23:31:14 +0000 | [diff] [blame] | 35 | android:roundIcon="@mipmap/ic_launcher_round" |
| 36 | android:supportsRtl="true" |
| Helen Qin | db3645e | 2022-09-21 05:02:34 +0000 | [diff] [blame] | 37 | android:theme="@style/Theme.CredentialSelector"> |
| Reema Bajwa | a8d8031 | 2023-09-14 23:31:14 +0000 | [diff] [blame] | 38 | |
| 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 Qin | db3645e | 2022-09-21 05:02:34 +0000 | [diff] [blame] | 60 | |
| 61 | </manifest> |