blob: ee62e5ee9faa689d14f66ebf1e1d25741ab7a000 [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
Alan Viverette7f1ab7a2014-04-08 17:12:43 -070021 <uses-sdk android:minSdkVersion="20" />
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
102 android:name="VectorDrawableStaticPerf"
ztenghui5a836f72014-07-21 15:59:06 -0700103 android:label="System icons" >
John Hofordabb7d132014-02-24 15:21:42 -0800104 <intent-filter>
105 <action android:name="android.intent.action.MAIN" />
106
107 <category android:name="com.android.test.dynamic.TEST" />
108 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -0800109 </activity>
John Hofordabb7d132014-02-24 15:21:42 -0800110 <activity
111 android:name="VectorCheckbox"
ztenghui0923be22014-07-01 13:49:47 -0700112 android:label="Basic static vector drawables" >
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>
119 <activity
120 android:name="VectorPathChecking"
121 android:label="Path Checking graphics" >
122 <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>
ztenghui0923be22014-07-01 13:49:47 -0700128 <activity
129 android:name="ScaleDrawableTests"
130 android:label="Scale Type Test" >
131 <intent-filter>
132 <action android:name="android.intent.action.MAIN" />
133
134 <category android:name="com.android.test.dynamic.TEST" />
135 </intent-filter>
136 </activity>
John Hofordabb7d132014-02-24 15:21:42 -0800137 </application>
138
139</manifest>