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 <application android:label="@string/app_name" 7 android:allowBackup="false" 8 android:usesCleartextTraffic="false" > 9 <service android:name="com.android.keychain.KeyChainService"> 10 <intent-filter> 11 <action android:name="android.security.IKeyChainService"/> 12 </intent-filter> 13 </service> 14 <activity android:name="com.android.keychain.KeyChainActivity" 15 android:theme="@style/Transparent" 16 android:excludeFromRecents="true"> 17 <intent-filter> 18 <action android:name="com.android.keychain.CHOOSER"/> 19 <category android:name="android.intent.category.DEFAULT"/> 20 </intent-filter> 21 </activity> 22 </application> 23 </manifest> 24