blob: 890214f2dc039b4a3f8b7cc6c66a914f4c1f7d64 [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"
25 android:label="vector" >
ztenghuie5e92602014-06-03 14:02:10 -070026 <activity
ztenghui7ac18b82014-06-03 14:02:10 -070027 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>
ztenghui7ac18b82014-06-03 14:02:10 -070034 </activity>
35 <activity
ztenghui16c1bd5d2014-06-16 10:30:58 -070036 android:name="BitmapDrawableDupe"
37 android:label="Bitmap Performance of clones" >
38 <intent-filter>
39 <action android:name="android.intent.action.MAIN" />
40
41 <category android:name="com.android.test.dynamic.TEST" />
42 </intent-filter>
43
44 </activity>
45 <activity
ztenghui7ac18b82014-06-03 14:02:10 -070046 android:name="VectorDrawableAnimation"
47 android:label="VectorTestAnimation" >
48 <intent-filter>
49 <action android:name="android.intent.action.MAIN" />
ztenghuie5e92602014-06-03 14:02:10 -070050
ztenghui7ac18b82014-06-03 14:02:10 -070051 <category android:name="com.android.test.dynamic.TEST" />
52 </intent-filter>
53 </activity>
John Hofordabb7d132014-02-24 15:21:42 -080054 <activity
55 android:name="VectorDrawableTest"
56 android:label="Vector Icon" >
57 <intent-filter>
58 <action android:name="android.intent.action.MAIN" />
59
60 <category android:name="android.intent.category.DEFAULT" />
61 <category android:name="android.intent.category.LAUNCHER" />
62 </intent-filter>
63 </activity>
64 <activity
ztenghuie5e92602014-06-03 14:02:10 -070065 android:name="AnimatedVectorDrawableTest"
66 android:label="AnimatedVectorDrawableTest" >
67 <intent-filter>
68 <action android:name="android.intent.action.MAIN" />
69
70 <category android:name="com.android.test.dynamic.TEST" />
71 </intent-filter>
72 </activity>
73 <activity
John Hofordabb7d132014-02-24 15:21:42 -080074 android:name="VectorDrawable01"
75 android:label="VectorTest1" >
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 </activity>
ztenghui7ac18b82014-06-03 14:02:10 -070082 <activity
John Hofordabb7d132014-02-24 15:21:42 -080083 android:name="VectorDrawableDupPerf"
84 android:label="Vector Performance of clones" >
85 <intent-filter>
86 <action android:name="android.intent.action.MAIN" />
87
88 <category android:name="com.android.test.dynamic.TEST" />
89 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -080090 </activity>
91 <activity
92 android:name="VectorDrawableStaticPerf"
93 android:label="Performance of vector images" >
94 <intent-filter>
95 <action android:name="android.intent.action.MAIN" />
96
97 <category android:name="com.android.test.dynamic.TEST" />
98 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -080099 </activity>
John Hofordabb7d132014-02-24 15:21:42 -0800100 <activity
101 android:name="VectorCheckbox"
102 android:label="On a Checkbox" >
103 <intent-filter>
104 <action android:name="android.intent.action.MAIN" />
105
106 <category android:name="com.android.test.dynamic.TEST" />
107 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -0800108 </activity>
109 <activity
110 android:name="VectorPathChecking"
111 android:label="Path Checking graphics" >
112 <intent-filter>
113 <action android:name="android.intent.action.MAIN" />
114
115 <category android:name="com.android.test.dynamic.TEST" />
116 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -0800117 </activity>
118 </application>
119
120</manifest>