blob: 1f4e5d1540cfc1112ca7c35bc9b02e93c05d24a4 [file] [log] [blame]
Brian Carlstrom3e6251d2011-04-11 09:05:06 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.keychain.tests">
19
20 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070021 <uses-permission android:name="android.permission.INTERNET"/>
22
23 <!--
24 To run service:
25 adb shell am startservice -n com.android.keychain.tests/.KeyChainServiceTest
26
27 To run activity:
28 adb shell am start -n com.android.keychain.tests/com.android.keychain.tests.KeyChainTestActivity
29 -->
30 <application>
31 <service android:name="com.android.keychain.tests.KeyChainServiceTest">
32 <intent-filter>
33 <action android:name="com.android.keychain.tests.KeyChainServiceTest"/>
34 </intent-filter>
35 </service>
36 <activity android:name="com.android.keychain.tests.KeyChainTestActivity">
37 <intent-filter>
38 <action android:name="com.android.keychain.tests.KeyChainTestActivity"/>
39 </intent-filter>
40 </activity>
41 <activity android:name="com.android.keychain.tests.KeyChainSocketTestActivity">
42 <intent-filter>
43 <action android:name="com.android.keychain.tests.KeyChainSocketTestActivity"/>
44 </intent-filter>
45 </activity>
46 </application>
47</manifest>