blob: dc6091376cf226d39c79e593f4b94f9565365175 [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
Carlos Valdivia4b0333f2016-02-11 17:13:32 -08007
Brian Carlstrom3e6251d2011-04-11 09:05:06 -07008 http://www.apache.org/licenses/LICENSE-2.0
Carlos Valdivia4b0333f2016-02-11 17:13:32 -08009
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070010 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">
Carlos Valdivia4b0333f2016-02-11 17:13:32 -080019
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070020 <uses-permission android:name="android.permission.INTERNET"/>
21
22 <!--
23 To run service:
Carlos Valdivia4b0333f2016-02-11 17:13:32 -080024 adb shell am startservice -n com.android.keychain.tests/.KeyChainServiceTest
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070025
Carlos Valdivia4b0333f2016-02-11 17:13:32 -080026 To run activity:
27 adb shell am start -n com.android.keychain.tests/com.android.keychain.tests.KeyChainTestActivity
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070028 -->
29 <application>
30 <service android:name="com.android.keychain.tests.KeyChainServiceTest">
31 <intent-filter>
32 <action android:name="com.android.keychain.tests.KeyChainServiceTest"/>
33 </intent-filter>
34 </service>
35 <activity android:name="com.android.keychain.tests.KeyChainTestActivity">
36 <intent-filter>
37 <action android:name="com.android.keychain.tests.KeyChainTestActivity"/>
38 </intent-filter>
39 </activity>
40 <activity android:name="com.android.keychain.tests.KeyChainSocketTestActivity">
41 <intent-filter>
42 <action android:name="com.android.keychain.tests.KeyChainSocketTestActivity"/>
43 </intent-filter>
44 </activity>
45 </application>
46</manifest>