blob: ecfafd668b9fadc6e5ebb1ea37d02046119049bc [file] [log] [blame]
Alice Leed71a07b2015-07-29 14:30:56 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 * Copyright (C) 2015 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 -->
17
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19 package="android.assist.testapp">
20
21 <application>
Alice Lee78098bf2015-08-05 15:42:47 -070022 <uses-library android:name="android.test.runner" />
Alice Leed71a07b2015-07-29 14:30:56 -070023
Alice Lee78098bf2015-08-05 15:42:47 -070024 <activity android:name="TestApp"
Alice Leef4aef2b2015-08-25 14:29:16 -070025 android:label="Assist Structure Test Activity"
Alice Leed71a07b2015-07-29 14:30:56 -070026 android:theme="@android:style/Theme.Material.Light">
27 <intent-filter>
Alice Lee78098bf2015-08-05 15:42:47 -070028 <action android:name="android.intent.action.TEST_APP_ASSIST_STRUCTURE" />
Alice Leed71a07b2015-07-29 14:30:56 -070029 <category android:name="android.intent.category.DEFAULT" />
30 <category android:name="android.intent.category.VOICE" />
31 </intent-filter>
Alice Lee78098bf2015-08-05 15:42:47 -070032 </activity>
Alice Leef6b3e9e2015-08-19 14:54:54 -070033 <activity android:name="DisableContextActivity"
34 android:label="Disable Context Test Activity"
35 android:theme="@android:style/Theme.Material.Light">
36 <intent-filter>
37 <action android:name="android.intent.action.TEST_APP_DISABLE_CONTEXT" />
38 <category android:name="android.intent.category.DEFAULT" />
39 </intent-filter>
40 </activity>
Alice Lee78098bf2015-08-05 15:42:47 -070041 <activity android:name="SecureActivity"
Alice Leef6b3e9e2015-08-19 14:54:54 -070042 android:label="Secure Test Activity"
Alice Lee78098bf2015-08-05 15:42:47 -070043 android:theme="@android:style/Theme.Material.Light">
44 <intent-filter>
45 <action android:name="android.intent.action.TEST_APP_FLAG_SECURE" />
46 <category android:name="android.intent.category.DEFAULT" />
47 <category android:name="android.intent.category.VOICE" />
48 </intent-filter>
49 </activity>
Cameron Nealeff1da6f2015-08-18 14:44:20 -070050 <activity android:name="LifecycleActivity"
51 android:label="Life Cycle Check Activity"
52 android:theme="@android:style/Theme.Material.Light">
53 <intent-filter>
54 <action android:name="android.intent.action.TEST_APP_LIFECYCLE" />
55 <category android:name="android.intent.category.DEFAULT" />
Alice Leef4aef2b2015-08-25 14:29:16 -070056 <category android:name="android.intent.category.VOICE" />
57 </intent-filter>
58 </activity>
59 <activity android:name="ScreenshotActivity"
60 android:label="Screenshot Test Activity">
61 <intent-filter>
62 <action android:name="android.intent.action.TEST_APP_SCREENSHOT" />
63 <category android:name="android.intent.category.DEFAULT" />
64 <category android:name="android.intent.category.VOICE" />
Cameron Nealeff1da6f2015-08-18 14:44:20 -070065 </intent-filter>
66 </activity>
Alice Lee474d0e42015-09-02 15:14:00 -070067 <activity android:name="ExtraAssistDataActivity"
68 android:label="Extra Assist Test Activity">
69 <intent-filter>
70 <action android:name="android.intent.action.TEST_APP_EXTRA_ASSIST" />
71 <category android:name="android.intent.category.DEFAULT" />
72 <category android:name="android.intent.category.VOICE" />
73 </intent-filter>
74 </activity>
Alice Leed71a07b2015-07-29 14:30:56 -070075 </application>
76</manifest>