blob: 28c5f33e56b32fcee64b855947e42cca9ae4fd4a [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" >
25 <activity
26 android:name="VectorDrawableTest"
27 android:label="Vector Icon" >
28 <intent-filter>
29 <action android:name="android.intent.action.MAIN" />
30
31 <category android:name="android.intent.category.DEFAULT" />
32 <category android:name="android.intent.category.LAUNCHER" />
33 </intent-filter>
34 </activity>
35 <activity
36 android:name="VectorDrawable01"
37 android:label="VectorTest1" >
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 </activity>
44
45 <activity
46 android:name="VectorDrawablePerformance"
47 android:label="Vector Performance" >
48 <intent-filter>
49 <action android:name="android.intent.action.MAIN" />
50
51 <category android:name="com.android.test.dynamic.TEST" />
52 </intent-filter>
53
54 </activity>
55
56 <activity
57 android:name="VectorDrawableDupPerf"
58 android:label="Vector Performance of clones" >
59 <intent-filter>
60 <action android:name="android.intent.action.MAIN" />
61
62 <category android:name="com.android.test.dynamic.TEST" />
63 </intent-filter>
64
65 </activity>
66 <activity
67 android:name="VectorDrawableStaticPerf"
68 android:label="Performance of vector images" >
69 <intent-filter>
70 <action android:name="android.intent.action.MAIN" />
71
72 <category android:name="com.android.test.dynamic.TEST" />
73 </intent-filter>
74
75 </activity>
ztenghuifba3bad2014-04-02 16:35:24 -070076
John Hofordabb7d132014-02-24 15:21:42 -080077 <activity
78 android:name="VectorCheckbox"
79 android:label="On a Checkbox" >
80 <intent-filter>
81 <action android:name="android.intent.action.MAIN" />
82
83 <category android:name="com.android.test.dynamic.TEST" />
84 </intent-filter>
85
86 </activity>
87 <activity
88 android:name="VectorPathChecking"
89 android:label="Path Checking graphics" >
90 <intent-filter>
91 <action android:name="android.intent.action.MAIN" />
92
93 <category android:name="com.android.test.dynamic.TEST" />
94 </intent-filter>
95
96 </activity>
97 </application>
98
99</manifest>