blob: eb46fb77ffb819e1ee45067667446aa1c6030b51 [file] [log] [blame]
Brian Carlstrom3e6251d2011-04-11 09:05:06 -07001<?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.keychain"
5 android:sharedUserLabel="@string/keychainUserLabel"
6 >
7 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
8 <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/>
9 <application>
10 <service android:name="com.android.keychain.KeyChainService">
11 <intent-filter>
12 <action android:name="android.security.IKeyChainService"/>
13 <action android:name="android.accounts.AccountAuthenticator"/>
14 </intent-filter>
15 <meta-data android:name="android.accounts.AccountAuthenticator"
16 android:resource="@xml/authenticator"/>
17 </service>
18 <activity android:name="com.android.keychain.KeyChainActivity"
19 android:excludeFromRecents="true">
20 <intent-filter>
21 <action android:name="com.android.keychain.CHOOSER"/>
22 <category android:name="android.intent.category.DEFAULT"/>
23 </intent-filter>
24 </activity>
25 </application>
26</manifest>