You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.4 KiB
33 lines
1.4 KiB
<?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>
|