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