blob: e648897b62745bafd0aff20e7258b2ce26e951a7 [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" >
ztenghuie5e92602014-06-03 14:02:10 -070020
ztenghui4cc3e272014-10-07 13:11:22 -070021 <uses-sdk android:minSdkVersion="21" />
John Hofordabb7d132014-02-24 15:21:42 -080022
23 <application
24 android:hardwareAccelerated="true"
ztenghui738177c2014-07-16 11:17:56 -070025 android:label="vector"
26 android:supportsRtl="true" >
ztenghuie5e92602014-06-03 14:02:10 -070027 <activity
ztenghui7ac18b82014-06-03 14:02:10 -070028 android:name="VectorDrawablePerformance"
29 android:label="Vector Performance" >
30 <intent-filter>
31 <action android:name="android.intent.action.MAIN" />
32
33 <category android:name="com.android.test.dynamic.TEST" />
34 </intent-filter>
ztenghui7ac18b82014-06-03 14:02:10 -070035 </activity>
36 <activity
ztenghui16c1bd5d2014-06-16 10:30:58 -070037 android:name="BitmapDrawableDupe"
38 android:label="Bitmap Performance of clones" >
39 <intent-filter>
40 <action android:name="android.intent.action.MAIN" />
41
42 <category android:name="com.android.test.dynamic.TEST" />
43 </intent-filter>
44
45 </activity>
46 <activity
ztenghui7ac18b82014-06-03 14:02:10 -070047 android:name="VectorDrawableAnimation"
48 android:label="VectorTestAnimation" >
49 <intent-filter>
50 <action android:name="android.intent.action.MAIN" />
ztenghuie5e92602014-06-03 14:02:10 -070051
ztenghui7ac18b82014-06-03 14:02:10 -070052 <category android:name="com.android.test.dynamic.TEST" />
53 </intent-filter>
54 </activity>
John Hofordabb7d132014-02-24 15:21:42 -080055 <activity
56 android:name="VectorDrawableTest"
57 android:label="Vector Icon" >
58 <intent-filter>
59 <action android:name="android.intent.action.MAIN" />
60
61 <category android:name="android.intent.category.DEFAULT" />
62 <category android:name="android.intent.category.LAUNCHER" />
63 </intent-filter>
64 </activity>
65 <activity
ztenghuie5e92602014-06-03 14:02:10 -070066 android:name="AnimatedVectorDrawableTest"
67 android:label="AnimatedVectorDrawableTest" >
68 <intent-filter>
69 <action android:name="android.intent.action.MAIN" />
70
71 <category android:name="com.android.test.dynamic.TEST" />
72 </intent-filter>
73 </activity>
74 <activity
Alan Viverettef456b1f2014-07-03 19:03:21 -070075 android:name="AnimatedStateVectorDrawableTest"
76 android:label="AnimatedStateList and AnimatedVectorDrawable" >
77 <intent-filter>
78 <action android:name="android.intent.action.MAIN" />
79
80 <category android:name="com.android.test.dynamic.TEST" />
81 </intent-filter>
82 </activity>
83 <activity
John Hofordabb7d132014-02-24 15:21:42 -080084 android:name="VectorDrawable01"
85 android:label="VectorTest1" >
86 <intent-filter>
87 <action android:name="android.intent.action.MAIN" />
88
89 <category android:name="com.android.test.dynamic.TEST" />
90 </intent-filter>
91 </activity>
ztenghui7ac18b82014-06-03 14:02:10 -070092 <activity
John Hofordabb7d132014-02-24 15:21:42 -080093 android:name="VectorDrawableDupPerf"
94 android:label="Vector Performance of clones" >
95 <intent-filter>
96 <action android:name="android.intent.action.MAIN" />
97
98 <category android:name="com.android.test.dynamic.TEST" />
99 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -0800100 </activity>
101 <activity
ztenghui80f44402014-09-23 16:35:05 -0700102 android:name="AnimatedVectorDrawableDupPerf"
103 android:label="Animated Vector Performance of clones" >
104 <intent-filter>
105 <action android:name="android.intent.action.MAIN" />
106
107 <category android:name="com.android.test.dynamic.TEST" />
108 </intent-filter>
109 </activity>
110 <activity
John Hofordabb7d132014-02-24 15:21:42 -0800111 android:name="VectorDrawableStaticPerf"
ztenghui5a836f72014-07-21 15:59:06 -0700112 android:label="System icons" >
John Hofordabb7d132014-02-24 15:21:42 -0800113 <intent-filter>
114 <action android:name="android.intent.action.MAIN" />
115
116 <category android:name="com.android.test.dynamic.TEST" />
117 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -0800118 </activity>
John Hofordabb7d132014-02-24 15:21:42 -0800119 <activity
120 android:name="VectorCheckbox"
ztenghui0923be22014-07-01 13:49:47 -0700121 android:label="Basic static vector drawables" >
John Hofordabb7d132014-02-24 15:21:42 -0800122 <intent-filter>
123 <action android:name="android.intent.action.MAIN" />
124
125 <category android:name="com.android.test.dynamic.TEST" />
126 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -0800127 </activity>
128 <activity
129 android:name="VectorPathChecking"
130 android:label="Path Checking graphics" >
131 <intent-filter>
132 <action android:name="android.intent.action.MAIN" />
133
134 <category android:name="com.android.test.dynamic.TEST" />
135 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -0800136 </activity>
ztenghui0923be22014-07-01 13:49:47 -0700137 <activity
138 android:name="ScaleDrawableTests"
139 android:label="Scale Type Test" >
140 <intent-filter>
141 <action android:name="android.intent.action.MAIN" />
142
143 <category android:name="com.android.test.dynamic.TEST" />
144 </intent-filter>
145 </activity>
ztenghui66613412014-08-08 10:48:22 -0700146 <activity
Andrew Flynn12c137f2015-05-11 13:36:42 -0400147 android:name="AnimatedVectorDrawableAttr"
148 android:label="AnimatedVectorDrawable Attr Test" >
149 <intent-filter>
150 <action android:name="android.intent.action.MAIN" />
151
152 <category android:name="com.android.test.dynamic.TEST" />
153 </intent-filter>
154 </activity>
155 <activity
ztenghui66613412014-08-08 10:48:22 -0700156 android:name="BoundsCheckTest"
157 android:label="SetBound check" >
158 <intent-filter>
159 <action android:name="android.intent.action.MAIN" />
160
161 <category android:name="com.android.test.dynamic.TEST" />
162 </intent-filter>
163 </activity>
John Hofordabb7d132014-02-24 15:21:42 -0800164 </application>
165
Andrew Flynn12c137f2015-05-11 13:36:42 -0400166</manifest>