blob: dcd8123857f8bdf7d399f306e0586c6e65dad58b [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.keychain"
android:sharedUserId="android.uid.system"
>
<!-- Needed so KeyChainService on non-system user can write
security logging events -->
<uses-permission android:name="android.permission.READ_LOGS"/>
<uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/>
<application android:label="@string/app_name"
android:allowBackup="false"
android:usesCleartextTraffic="false"
android:theme="@android:style/Theme.DeviceDefault.DayNight">
<service android:name="com.android.keychain.KeyChainService"
android:exported="true">
<intent-filter>
<action android:name="android.security.IKeyChainService"/>
</intent-filter>
</service>
<activity android:name="com.android.keychain.KeyChainActivity"
android:exported="true"
android:theme="@style/KeyChainTransparent"
android:launchMode="singleTop"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="com.android.keychain.CHOOSER"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>
</manifest>