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" 20 package="com.android.credentialmanager"> 21 22 <uses-permission android:name="android.permission.LAUNCH_CREDENTIAL_SELECTOR"/> 23 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/> 24 <uses-permission android:name="android.permission.SET_BIOMETRIC_DIALOG_ADVANCED"/> 25 <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/> 26 <uses-permission android:name="android.permission.ACCESS_INSTANT_APPS" /> 27 <uses-permission android:name="android.permission.USE_BIOMETRIC" /> 28 29 <application 30 android:allowBackup="true" 31 android:dataExtractionRules="@xml/data_extraction_rules" 32 android:fullBackupContent="@xml/backup_rules" 33 android:icon="@mipmap/ic_launcher" 34 android:label="@string/app_name" 35 android:roundIcon="@mipmap/ic_launcher_round" 36 android:supportsRtl="true" 37 android:theme="@style/Theme.CredentialSelector"> 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> 60 61</manifest> 62