blob: 8af5ede179f727902acd096283f254d5fc2f92c9 [file] [log] [blame]
Filip Gruszczynskibef1b5c2015-11-24 18:25:08 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 * Copyright (C) 2015 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"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080019 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
20 package="android.server.app">
Filip Gruszczynskibef1b5c2015-11-24 18:25:08 -080021
22 <application>
23 <activity android:name=".TestActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080024 android:resizeableActivity="true"
Filip Gruszczynskib19f78f2015-12-22 09:24:30 -080025 android:exported="true"
Wale Ogunwalee2f7d4f2015-12-16 12:18:32 -080026 />
Adam Lesinski34ef5ef2016-06-20 14:35:51 -070027 <activity android:name=".ResizeableActivity"
28 android:resizeableActivity="true"
29 android:exported="true"
30 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
31 />
Robert Carr1a7fa8f2016-03-14 18:11:59 -070032 <activity android:name=".NonResizeableActivity"
33 android:resizeableActivity="false"
34 android:exported="true"
35 />
Jorim Jaggi229833e2015-12-29 14:30:46 +010036 <activity android:name=".DockedActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080037 android:resizeableActivity="true"
Jorim Jaggi229833e2015-12-29 14:30:46 +010038 android:exported="true"
39 android:taskAffinity="nobody.but.DockedActivity"
40 />
Jorim Jaggidc56ccf2016-04-21 21:07:05 -070041 <activity android:name=".TranslucentActivity"
42 android:theme="@android:style/Theme.Translucent.NoTitleBar"
43 android:resizeableActivity="true"
44 android:taskAffinity="nobody.but.TranslucentActivity"
45 android:exported="true"
46 />
Chong Zhang390cfd92016-01-07 13:04:25 -080047 <activity android:name=".NoRelaunchActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080048 android:resizeableActivity="true"
Chong Zhange68e9262016-06-23 14:33:15 -070049 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|fontScale"
Chong Zhang390cfd92016-01-07 13:04:25 -080050 android:exported="true"
Wale Ogunwale43e9b192016-02-24 12:39:00 -080051 android:taskAffinity="nobody.but.NoRelaunchActivity"
Chong Zhang390cfd92016-01-07 13:04:25 -080052 />
53 <activity android:name=".SlowCreateActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080054 android:resizeableActivity="true"
Chong Zhang390cfd92016-01-07 13:04:25 -080055 android:exported="true"
56 />
Andrii Kuliand5a88252016-07-22 12:32:36 -070057 <activity android:name=".LaunchingActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080058 android:resizeableActivity="true"
Filip Gruszczynskib19f78f2015-12-22 09:24:30 -080059 android:exported="true"
Wale Ogunwale8ffe16a2016-01-14 10:58:56 -080060 android:taskAffinity="nobody.but.LaunchToSideActivity"
Wale Ogunwalee2f7d4f2015-12-16 12:18:32 -080061 />
62 <activity android:name=".PipActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080063 android:resizeableActivity="true"
Filip Gruszczynski933ec5f2015-12-15 12:20:07 -080064 android:supportsPictureInPicture="true"
Wale Ogunwale82eb6972016-02-12 12:25:37 -080065 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
Filip Gruszczynskib19f78f2015-12-22 09:24:30 -080066 android:exported="true"
Filip Gruszczynski933ec5f2015-12-15 12:20:07 -080067 />
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080068 <activity android:name=".AutoEnterPipActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080069 android:resizeableActivity="true"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080070 android:supportsPictureInPicture="true"
Wale Ogunwale82eb6972016-02-12 12:25:37 -080071 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080072 android:exported="true"
73 />
74 <activity android:name=".AlwaysFocusablePipActivity"
Wale Ogunwale02c1b822016-01-12 13:01:45 -080075 android:theme="@style/Theme.Transparent"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080076 android:resizeableActivity="true"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080077 android:supportsPictureInPicture="true"
78 androidprv:alwaysFocusable="true"
79 android:exported="true"
Wale Ogunwale02c1b822016-01-12 13:01:45 -080080 android:taskAffinity="nobody.but.AlwaysFocusablePipActivity"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080081 />
82 <activity android:name=".LaunchIntoPinnedStackPipActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080083 android:resizeableActivity="true"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080084 android:supportsPictureInPicture="true"
85 androidprv:alwaysFocusable="true"
Wale Ogunwale82eb6972016-02-12 12:25:37 -080086 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080087 android:exported="true"
88 />
Wale Ogunwalebf352d42016-01-10 18:21:30 -080089 <activity android:name=".VisibleBehindActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080090 android:resizeableActivity="true"
Wale Ogunwalebf352d42016-01-10 18:21:30 -080091 android:supportsPictureInPicture="true"
92 android:exported="true"
93 android:taskAffinity="nobody.but.VisibleBehindActivity"
94 />
Wale Ogunwale02c1b822016-01-12 13:01:45 -080095 <activity android:name=".LaunchPipOnPipActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080096 android:resizeableActivity="true"
Wale Ogunwale02c1b822016-01-12 13:01:45 -080097 android:supportsPictureInPicture="true"
98 android:taskAffinity="nobody.but.LaunchPipOnPipActivity"
Wale Ogunwale9d8f26d2016-01-25 10:47:25 -080099 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
Wale Ogunwale02c1b822016-01-12 13:01:45 -0800100 android:exported="true"
101 />
Wale Ogunwalece738aa2016-02-23 13:02:22 -0800102 <activity android:name=".FreeformActivity"
103 android:resizeableActivity="true"
104 android:taskAffinity="nobody.but.FreeformActivity"
105 android:exported="true"
106 />
Chong Zhang5f158e02016-02-24 13:37:39 -0800107 <activity android:name=".TopLeftLayoutActivity"
108 android:resizeableActivity="true"
109 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
110 android:exported="true">
Andrii Kulian90f0eb22016-03-16 17:03:48 -0700111 <layout android:defaultWidth="240dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800112 android:defaultHeight="160dp"
113 android:gravity="top|left"
Andrii Kulian3ce49ba2016-05-17 12:23:23 -0700114 android:minWidth="100dp"
115 android:minHeight="80dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800116 />
117 </activity>
118 <activity android:name=".TopRightLayoutActivity"
119 android:resizeableActivity="true"
120 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
121 android:exported="true">
122 <layout android:defaultWidth="25%"
Andrii Kulian90f0eb22016-03-16 17:03:48 -0700123 android:defaultHeight="35%"
Chong Zhang5f158e02016-02-24 13:37:39 -0800124 android:gravity="top|right"
Raj Mamadgic3c7ece2016-11-15 18:14:34 -0800125 android:minWidth="90dp"
Andrii Kulian3ce49ba2016-05-17 12:23:23 -0700126 android:minHeight="80dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800127 />
128 </activity>
129 <activity android:name=".BottomLeftLayoutActivity"
130 android:resizeableActivity="true"
131 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
132 android:exported="true">
133 <layout android:defaultWidth="25%"
Andrii Kulian90f0eb22016-03-16 17:03:48 -0700134 android:defaultHeight="35%"
Chong Zhang5f158e02016-02-24 13:37:39 -0800135 android:gravity="bottom|left"
Raj Mamadgic3c7ece2016-11-15 18:14:34 -0800136 android:minWidth="90dp"
Andrii Kulian3ce49ba2016-05-17 12:23:23 -0700137 android:minHeight="80dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800138 />
139 </activity>
140 <activity android:name=".BottomRightLayoutActivity"
141 android:resizeableActivity="true"
142 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
143 android:exported="true">
Andrii Kulian90f0eb22016-03-16 17:03:48 -0700144 <layout android:defaultWidth="240dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800145 android:defaultHeight="160dp"
146 android:gravity="bottom|right"
Andrii Kulian3ce49ba2016-05-17 12:23:23 -0700147 android:minWidth="100dp"
148 android:minHeight="80dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800149 />
150 </activity>
Wale Ogunwale32e193c2016-06-20 14:52:12 -0700151 <activity android:name=".TurnScreenOnActivity"
152 android:exported="true"
153 />
Andrii Kulian3343ab22016-06-23 00:31:39 -0700154 <activity android:name=".SingleTaskActivity"
155 android:exported="true"
156 android:launchMode="singleTask"
157 />
158 <activity android:name=".SingleInstanceActivity"
159 android:exported="true"
160 android:launchMode="singleInstance"
161 />
Chong Zhang150bdd22016-06-27 11:24:04 -0700162 <activity android:name=".TrampolineActivity"
163 android:exported="true"
164 android:theme="@android:style/Theme.NoDisplay"
165 />
Andrii Kuliand5a88252016-07-22 12:32:36 -0700166 <activity android:name=".BroadcastReceiverActivity"
167 android:resizeableActivity="true"
168 android:exported="true"
169 />
Arthur Hsuf760af52017-02-22 11:47:12 -0800170 <activity android:name=".NoHomeScreenObserver"
171 android:exported="true"
172 />
Chong Zhang150bdd22016-06-27 11:24:04 -0700173 <activity-alias android:enabled="true"
174 android:exported="true"
175 android:name=".EntryPointAliasActivity"
176 android:targetActivity=".TrampolineActivity" >
177 </activity-alias>
Filip Gruszczynskibef1b5c2015-11-24 18:25:08 -0800178 </application>
179</manifest>
180