blob: 113dce314e22f1f502ccbdc9b4b7ee1b2fdea8d0 [file] [log] [blame]
John Hofordabb7d132014-02-24 15:21:42 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2014 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="com.android.test.dynamic" >
Alan Viverette7f1ab7a2014-04-08 17:12:43 -070020 <uses-sdk android:minSdkVersion="20" />
John Hofordabb7d132014-02-24 15:21:42 -080021
22 <application
23 android:hardwareAccelerated="true"
24 android:label="vector" >
ztenghui7ac18b82014-06-03 14:02:10 -070025
26 <activity
27 android:name="VectorDrawablePerformance"
28 android:label="Vector Performance" >
29 <intent-filter>
30 <action android:name="android.intent.action.MAIN" />
31
32 <category android:name="com.android.test.dynamic.TEST" />
33 </intent-filter>
34
35 </activity>
36 <activity
37 android:name="VectorDrawableAnimation"
38 android:label="VectorTestAnimation" >
39 <intent-filter>
40 <action android:name="android.intent.action.MAIN" />
41 <category android:name="com.android.test.dynamic.TEST" />
42 </intent-filter>
43 </activity>
John Hofordabb7d132014-02-24 15:21:42 -080044 <activity
45 android:name="VectorDrawableTest"
46 android:label="Vector Icon" >
47 <intent-filter>
48 <action android:name="android.intent.action.MAIN" />
49
50 <category android:name="android.intent.category.DEFAULT" />
51 <category android:name="android.intent.category.LAUNCHER" />
52 </intent-filter>
53 </activity>
54 <activity
55 android:name="VectorDrawable01"
56 android:label="VectorTest1" >
57 <intent-filter>
58 <action android:name="android.intent.action.MAIN" />
59
60 <category android:name="com.android.test.dynamic.TEST" />
61 </intent-filter>
62 </activity>
ztenghui7ac18b82014-06-03 14:02:10 -070063 <activity
John Hofordabb7d132014-02-24 15:21:42 -080064 android:name="VectorDrawableDupPerf"
65 android:label="Vector Performance of clones" >
66 <intent-filter>
67 <action android:name="android.intent.action.MAIN" />
68
69 <category android:name="com.android.test.dynamic.TEST" />
70 </intent-filter>
71
72 </activity>
73 <activity
74 android:name="VectorDrawableStaticPerf"
75 android:label="Performance of vector images" >
76 <intent-filter>
77 <action android:name="android.intent.action.MAIN" />
78
79 <category android:name="com.android.test.dynamic.TEST" />
80 </intent-filter>
81
82 </activity>
ztenghuifba3bad2014-04-02 16:35:24 -070083
John Hofordabb7d132014-02-24 15:21:42 -080084 <activity
85 android:name="VectorCheckbox"
86 android:label="On a Checkbox" >
87 <intent-filter>
88 <action android:name="android.intent.action.MAIN" />
89
90 <category android:name="com.android.test.dynamic.TEST" />
91 </intent-filter>
92
93 </activity>
94 <activity
95 android:name="VectorPathChecking"
96 android:label="Path Checking graphics" >
97 <intent-filter>
98 <action android:name="android.intent.action.MAIN" />
99
100 <category android:name="com.android.test.dynamic.TEST" />
101 </intent-filter>
102
103 </activity>
104 </application>
105
106</manifest>