summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
blob: 662b670b4ad961fa53d5b95e8edca4f01a463587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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"
          >
    <application android:label="@string/app_name"
            android:allowBackup="false"
            android:usesCleartextTraffic="false" >
        <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/Transparent"
		  android:excludeFromRecents="true">
	    <intent-filter>
	        <action android:name="com.android.keychain.CHOOSER"/>
                <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
        </activity>
    </application>
</manifest>