blob: 5334dac57ca2c2f618686ff46bf79c57b676f49f [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"
Ashwini Orugantie178c242020-03-18 15:46:39 -070019 package="com.android.test.dynamic">
ztenghuie5e92602014-06-03 14:02:10 -070020
Ashwini Orugantie178c242020-03-18 15:46:39 -070021 <application android:hardwareAccelerated="true"
22 android:label="vector"
23 android:supportsRtl="true">
24 <activity android:name="VectorDrawablePerformance"
25 android:label="Vector Performance"
26 android:exported="true">
ztenghui7ac18b82014-06-03 14:02:10 -070027 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070028 <action android:name="android.intent.action.MAIN"/>
ztenghui7ac18b82014-06-03 14:02:10 -070029
Ashwini Orugantie178c242020-03-18 15:46:39 -070030 <category android:name="com.android.test.dynamic.TEST"/>
ztenghui7ac18b82014-06-03 14:02:10 -070031 </intent-filter>
ztenghui7ac18b82014-06-03 14:02:10 -070032 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -070033 <activity android:name="BitmapDrawableDupe"
34 android:label="Bitmap Performance of clones"
35 android:exported="true">
ztenghui16c1bd5d2014-06-16 10:30:58 -070036 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070037 <action android:name="android.intent.action.MAIN"/>
ztenghui16c1bd5d2014-06-16 10:30:58 -070038
Ashwini Orugantie178c242020-03-18 15:46:39 -070039 <category android:name="com.android.test.dynamic.TEST"/>
ztenghui16c1bd5d2014-06-16 10:30:58 -070040 </intent-filter>
41
42 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -070043 <activity android:name="VectorDrawableAnimation"
44 android:label="VectorTestAnimation"
45 android:exported="true">
ztenghui7ac18b82014-06-03 14:02:10 -070046 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070047 <action android:name="android.intent.action.MAIN"/>
ztenghuie5e92602014-06-03 14:02:10 -070048
Ashwini Orugantie178c242020-03-18 15:46:39 -070049 <category android:name="com.android.test.dynamic.TEST"/>
ztenghui7ac18b82014-06-03 14:02:10 -070050 </intent-filter>
51 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -070052 <activity android:name="VectorDrawableTest"
53 android:label="Vector Icon"
54 android:exported="true">
John Hofordabb7d132014-02-24 15:21:42 -080055 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070056 <action android:name="android.intent.action.MAIN"/>
John Hofordabb7d132014-02-24 15:21:42 -080057
Ashwini Orugantie178c242020-03-18 15:46:39 -070058 <category android:name="android.intent.category.DEFAULT"/>
59 <category android:name="android.intent.category.LAUNCHER"/>
John Hofordabb7d132014-02-24 15:21:42 -080060 </intent-filter>
61 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -070062 <activity android:name="AnimatedVectorDrawableTest"
63 android:label="AnimatedVectorDrawableTest"
64 android:exported="true">
ztenghuie5e92602014-06-03 14:02:10 -070065 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070066 <action android:name="android.intent.action.MAIN"/>
ztenghuie5e92602014-06-03 14:02:10 -070067
Ashwini Orugantie178c242020-03-18 15:46:39 -070068 <category android:name="com.android.test.dynamic.TEST"/>
ztenghuie5e92602014-06-03 14:02:10 -070069 </intent-filter>
70 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -070071 <activity android:name="AnimatedStateVectorDrawableTest"
72 android:label="AnimatedStateList and AnimatedVectorDrawable"
73 android:exported="true">
Alan Viverettef456b1f2014-07-03 19:03:21 -070074 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070075 <action android:name="android.intent.action.MAIN"/>
Alan Viverettef456b1f2014-07-03 19:03:21 -070076
Ashwini Orugantie178c242020-03-18 15:46:39 -070077 <category android:name="com.android.test.dynamic.TEST"/>
Alan Viverettef456b1f2014-07-03 19:03:21 -070078 </intent-filter>
79 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -070080 <activity android:name="VectorDrawable01"
81 android:label="VectorTest1"
82 android:exported="true">
John Hofordabb7d132014-02-24 15:21:42 -080083 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070084 <action android:name="android.intent.action.MAIN"/>
John Hofordabb7d132014-02-24 15:21:42 -080085
Ashwini Orugantie178c242020-03-18 15:46:39 -070086 <category android:name="com.android.test.dynamic.TEST"/>
John Hofordabb7d132014-02-24 15:21:42 -080087 </intent-filter>
88 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -070089 <activity android:name="VectorDrawableDupPerf"
90 android:label="Vector Performance of clones"
91 android:exported="true">
John Hofordabb7d132014-02-24 15:21:42 -080092 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070093 <action android:name="android.intent.action.MAIN"/>
John Hofordabb7d132014-02-24 15:21:42 -080094
Ashwini Orugantie178c242020-03-18 15:46:39 -070095 <category android:name="com.android.test.dynamic.TEST"/>
John Hofordabb7d132014-02-24 15:21:42 -080096 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -080097 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -070098 <activity android:name="AnimatedVectorDrawableDupPerf"
99 android:label="Animated Vector Performance of clones"
100 android:exported="true">
ztenghui80f44402014-09-23 16:35:05 -0700101 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700102 <action android:name="android.intent.action.MAIN"/>
ztenghui80f44402014-09-23 16:35:05 -0700103
Ashwini Orugantie178c242020-03-18 15:46:39 -0700104 <category android:name="com.android.test.dynamic.TEST"/>
ztenghui80f44402014-09-23 16:35:05 -0700105 </intent-filter>
106 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700107 <activity android:name="VectorDrawableStaticPerf"
108 android:label="System icons"
109 android:exported="true">
John Hofordabb7d132014-02-24 15:21:42 -0800110 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700111 <action android:name="android.intent.action.MAIN"/>
John Hofordabb7d132014-02-24 15:21:42 -0800112
Ashwini Orugantie178c242020-03-18 15:46:39 -0700113 <category android:name="com.android.test.dynamic.TEST"/>
John Hofordabb7d132014-02-24 15:21:42 -0800114 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -0800115 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700116 <activity android:name="VectorCheckbox"
117 android:label="Basic static vector drawables"
118 android:exported="true">
John Hofordabb7d132014-02-24 15:21:42 -0800119 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700120 <action android:name="android.intent.action.MAIN"/>
John Hofordabb7d132014-02-24 15:21:42 -0800121
Ashwini Orugantie178c242020-03-18 15:46:39 -0700122 <category android:name="com.android.test.dynamic.TEST"/>
John Hofordabb7d132014-02-24 15:21:42 -0800123 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -0800124 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700125 <activity android:name="VectorPathChecking"
126 android:label="Path Checking graphics"
127 android:exported="true">
John Hofordabb7d132014-02-24 15:21:42 -0800128 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700129 <action android:name="android.intent.action.MAIN"/>
John Hofordabb7d132014-02-24 15:21:42 -0800130
Ashwini Orugantie178c242020-03-18 15:46:39 -0700131 <category android:name="com.android.test.dynamic.TEST"/>
John Hofordabb7d132014-02-24 15:21:42 -0800132 </intent-filter>
John Hofordabb7d132014-02-24 15:21:42 -0800133 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700134 <activity android:name="ScaleDrawableTests"
135 android:label="Scale Type Test"
136 android:exported="true">
ztenghui0923be22014-07-01 13:49:47 -0700137 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700138 <action android:name="android.intent.action.MAIN"/>
ztenghui0923be22014-07-01 13:49:47 -0700139
Ashwini Orugantie178c242020-03-18 15:46:39 -0700140 <category android:name="com.android.test.dynamic.TEST"/>
ztenghui0923be22014-07-01 13:49:47 -0700141 </intent-filter>
142 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700143 <activity android:name="AnimatedVectorDrawableAttr"
144 android:label="AnimatedVectorDrawable Attr Test"
145 android:exported="true">
Andrew Flynn12c137f2015-05-11 13:36:42 -0400146 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700147 <action android:name="android.intent.action.MAIN"/>
Andrew Flynn12c137f2015-05-11 13:36:42 -0400148
Ashwini Orugantie178c242020-03-18 15:46:39 -0700149 <category android:name="com.android.test.dynamic.TEST"/>
Andrew Flynn12c137f2015-05-11 13:36:42 -0400150 </intent-filter>
151 </activity>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700152 <activity android:name="BoundsCheckTest"
153 android:label="SetBound check"
154 android:exported="true">
ztenghui66613412014-08-08 10:48:22 -0700155 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -0700156 <action android:name="android.intent.action.MAIN"/>
ztenghui66613412014-08-08 10:48:22 -0700157
Ashwini Orugantie178c242020-03-18 15:46:39 -0700158 <category android:name="com.android.test.dynamic.TEST"/>
ztenghui66613412014-08-08 10:48:22 -0700159 </intent-filter>
160 </activity>
John Hofordabb7d132014-02-24 15:21:42 -0800161 </application>
162
Andrew Flynn12c137f2015-05-11 13:36:42 -0400163</manifest>