• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3          package="com.android.keychain"
4          android:sharedUserId="android.uid.system"
5          >
6    <!-- Needed so KeyChainService on non-system user can write
7         security logging events -->
8    <uses-permission android:name="android.permission.READ_LOGS"/>
9
10    <application android:label="@string/app_name"
11            android:allowBackup="false"
12            android:usesCleartextTraffic="false"
13            android:theme="@android:style/Theme.DeviceDefault.DayNight">
14        <service android:name="com.android.keychain.KeyChainService">
15            <intent-filter>
16                <action android:name="android.security.IKeyChainService"/>
17            </intent-filter>
18        </service>
19        <activity android:name="com.android.keychain.KeyChainActivity"
20                  android:theme="@style/KeyChainTransparent"
21		  android:excludeFromRecents="true">
22	    <intent-filter>
23	        <action android:name="com.android.keychain.CHOOSER"/>
24                <category android:name="android.intent.category.DEFAULT"/>
25            </intent-filter>
26        </activity>
27    </application>
28</manifest>
29