blob: d8355177ad4cbb913d453b637405c6928c532869 [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 />
Robert Carr1a7fa8f2016-03-14 18:11:59 -070027 <activity android:name=".NonResizeableActivity"
28 android:resizeableActivity="false"
29 android:exported="true"
30 />
Jorim Jaggi229833e2015-12-29 14:30:46 +010031 <activity android:name=".DockedActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080032 android:resizeableActivity="true"
Jorim Jaggi229833e2015-12-29 14:30:46 +010033 android:exported="true"
34 android:taskAffinity="nobody.but.DockedActivity"
35 />
Jorim Jaggidc56ccf2016-04-21 21:07:05 -070036 <activity android:name=".TranslucentActivity"
37 android:theme="@android:style/Theme.Translucent.NoTitleBar"
38 android:resizeableActivity="true"
39 android:taskAffinity="nobody.but.TranslucentActivity"
40 android:exported="true"
41 />
Chong Zhang390cfd92016-01-07 13:04:25 -080042 <activity android:name=".NoRelaunchActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080043 android:resizeableActivity="true"
Wale Ogunwale9d8f26d2016-01-25 10:47:25 -080044 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
Chong Zhang390cfd92016-01-07 13:04:25 -080045 android:exported="true"
Wale Ogunwale43e9b192016-02-24 12:39:00 -080046 android:taskAffinity="nobody.but.NoRelaunchActivity"
Chong Zhang390cfd92016-01-07 13:04:25 -080047 />
48 <activity android:name=".SlowCreateActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080049 android:resizeableActivity="true"
Chong Zhang390cfd92016-01-07 13:04:25 -080050 android:exported="true"
51 />
Filip Gruszczynski933ec5f2015-12-15 12:20:07 -080052 <activity android:name=".LaunchToSideActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080053 android:resizeableActivity="true"
Filip Gruszczynskib19f78f2015-12-22 09:24:30 -080054 android:exported="true"
Wale Ogunwale8ffe16a2016-01-14 10:58:56 -080055 android:taskAffinity="nobody.but.LaunchToSideActivity"
Wale Ogunwalee2f7d4f2015-12-16 12:18:32 -080056 />
57 <activity android:name=".PipActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080058 android:resizeableActivity="true"
Filip Gruszczynski933ec5f2015-12-15 12:20:07 -080059 android:supportsPictureInPicture="true"
Wale Ogunwale82eb6972016-02-12 12:25:37 -080060 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
Filip Gruszczynskib19f78f2015-12-22 09:24:30 -080061 android:exported="true"
Filip Gruszczynski933ec5f2015-12-15 12:20:07 -080062 />
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080063 <activity android:name=".AutoEnterPipActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080064 android:resizeableActivity="true"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080065 android:supportsPictureInPicture="true"
Wale Ogunwale82eb6972016-02-12 12:25:37 -080066 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080067 android:exported="true"
68 />
69 <activity android:name=".AlwaysFocusablePipActivity"
Wale Ogunwale02c1b822016-01-12 13:01:45 -080070 android:theme="@style/Theme.Transparent"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080071 android:resizeableActivity="true"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080072 android:supportsPictureInPicture="true"
73 androidprv:alwaysFocusable="true"
74 android:exported="true"
Wale Ogunwale02c1b822016-01-12 13:01:45 -080075 android:taskAffinity="nobody.but.AlwaysFocusablePipActivity"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080076 />
77 <activity android:name=".LaunchIntoPinnedStackPipActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080078 android:resizeableActivity="true"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080079 android:supportsPictureInPicture="true"
80 androidprv:alwaysFocusable="true"
Wale Ogunwale82eb6972016-02-12 12:25:37 -080081 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
Wale Ogunwale7f8cade2015-12-31 18:58:29 -080082 android:exported="true"
83 />
Wale Ogunwalebf352d42016-01-10 18:21:30 -080084 <activity android:name=".VisibleBehindActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080085 android:resizeableActivity="true"
Wale Ogunwalebf352d42016-01-10 18:21:30 -080086 android:supportsPictureInPicture="true"
87 android:exported="true"
88 android:taskAffinity="nobody.but.VisibleBehindActivity"
89 />
Wale Ogunwale02c1b822016-01-12 13:01:45 -080090 <activity android:name=".LaunchPipOnPipActivity"
Wale Ogunwalece738aa2016-02-23 13:02:22 -080091 android:resizeableActivity="true"
Wale Ogunwale02c1b822016-01-12 13:01:45 -080092 android:supportsPictureInPicture="true"
93 android:taskAffinity="nobody.but.LaunchPipOnPipActivity"
Wale Ogunwale9d8f26d2016-01-25 10:47:25 -080094 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
Wale Ogunwale02c1b822016-01-12 13:01:45 -080095 android:exported="true"
96 />
Wale Ogunwalece738aa2016-02-23 13:02:22 -080097 <activity android:name=".FreeformActivity"
98 android:resizeableActivity="true"
99 android:taskAffinity="nobody.but.FreeformActivity"
100 android:exported="true"
101 />
Chong Zhang5f158e02016-02-24 13:37:39 -0800102 <activity android:name=".TopLeftLayoutActivity"
103 android:resizeableActivity="true"
104 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
105 android:exported="true">
Andrii Kulian90f0eb22016-03-16 17:03:48 -0700106 <layout android:defaultWidth="240dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800107 android:defaultHeight="160dp"
108 android:gravity="top|left"
Andrii Kulian3ce49ba2016-05-17 12:23:23 -0700109 android:minWidth="100dp"
110 android:minHeight="80dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800111 />
112 </activity>
113 <activity android:name=".TopRightLayoutActivity"
114 android:resizeableActivity="true"
115 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
116 android:exported="true">
117 <layout android:defaultWidth="25%"
Andrii Kulian90f0eb22016-03-16 17:03:48 -0700118 android:defaultHeight="35%"
Chong Zhang5f158e02016-02-24 13:37:39 -0800119 android:gravity="top|right"
Andrii Kulian3ce49ba2016-05-17 12:23:23 -0700120 android:minWidth="100dp"
121 android:minHeight="80dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800122 />
123 </activity>
124 <activity android:name=".BottomLeftLayoutActivity"
125 android:resizeableActivity="true"
126 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
127 android:exported="true">
128 <layout android:defaultWidth="25%"
Andrii Kulian90f0eb22016-03-16 17:03:48 -0700129 android:defaultHeight="35%"
Chong Zhang5f158e02016-02-24 13:37:39 -0800130 android:gravity="bottom|left"
Andrii Kulian3ce49ba2016-05-17 12:23:23 -0700131 android:minWidth="100dp"
132 android:minHeight="80dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800133 />
134 </activity>
135 <activity android:name=".BottomRightLayoutActivity"
136 android:resizeableActivity="true"
137 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
138 android:exported="true">
Andrii Kulian90f0eb22016-03-16 17:03:48 -0700139 <layout android:defaultWidth="240dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800140 android:defaultHeight="160dp"
141 android:gravity="bottom|right"
Andrii Kulian3ce49ba2016-05-17 12:23:23 -0700142 android:minWidth="100dp"
143 android:minHeight="80dp"
Chong Zhang5f158e02016-02-24 13:37:39 -0800144 />
145 </activity>
Wale Ogunwale32e193c2016-06-20 14:52:12 -0700146 <activity android:name=".TurnScreenOnActivity"
147 android:exported="true"
148 />
Filip Gruszczynskibef1b5c2015-11-24 18:25:08 -0800149 </application>
150</manifest>
151