blob: db2efc391463392a82f7f7b74a2b8b79c62e3082 [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
36 android:name="VectorDrawableAnimation"
37 android:label="VectorTestAnimation" >
38 <intent-filter>
39 <action android:name="android.intent.action.MAIN" />
ztenghuie5e92602014-06-03 14:02:10 -070040
ztenghui7ac18b82014-06-03 14:02:10 -070041 <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
ztenghuie5e92602014-06-03 14:02:10 -070055 android:name="AnimatedVectorDrawableTest"
56 android:label="AnimatedVectorDrawableTest" >
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>
63 <activity
John Hofordabb7d132014-02-24 15:21:42 -080064 android:name="VectorDrawable01"
65 android:label="VectorTest1" >
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 </activity>
ztenghui7ac18b82014-06-03 14:02:10 -070072 <activity
John Hofordabb7d132014-02-24 15:21:42 -080073 android:name="VectorDrawableDupPerf"
74 android:label="Vector Performance of clones" >
75 <intent-filter>
76 <action android:name="android.intent.action.MAIN" />
77
78 <category android:name="com.android.test.dynamic.TEST" />
79 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -080080 </activity>
81 <activity
82 android:name="VectorDrawableStaticPerf"
83 android:label="Performance of vector images" >
84 <intent-filter>
85 <action android:name="android.intent.action.MAIN" />
86
87 <category android:name="com.android.test.dynamic.TEST" />
88 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -080089 </activity>
John Hofordabb7d132014-02-24 15:21:42 -080090 <activity
91 android:name="VectorCheckbox"
92 android:label="On a Checkbox" >
93 <intent-filter>
94 <action android:name="android.intent.action.MAIN" />
95
96 <category android:name="com.android.test.dynamic.TEST" />
97 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -080098 </activity>
99 <activity
100 android:name="VectorPathChecking"
101 android:label="Path Checking graphics" >
102 <intent-filter>
103 <action android:name="android.intent.action.MAIN" />
104
105 <category android:name="com.android.test.dynamic.TEST" />
106 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -0800107 </activity>
108 </application>
109
110</manifest>