summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
blob: 9d1601fbb4b196d31fde493bf3d2ab0c8c18a1ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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"/>

    <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">
            <intent-filter>
                <action android:name="android.security.IKeyChainService"/>
            </intent-filter>
        </service>
        <activity android:name="com.android.keychain.KeyChainActivity"
                  android:theme="@style/KeyChainTransparent"
		  android:excludeFromRecents="true">
	    <intent-filter>
	        <action android:name="com.android.keychain.CHOOSER"/>
                <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
        </activity>
    </application>
</manifest>