Home | History | Annotate | Download | only in app
      1 <?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"
     19           xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
     20           package="android.server.app">
     21 
     22     <application>
     23         <activity android:name=".TestActivity"
     24                 android:resizeableActivity="true"
     25                 android:exported="true"
     26         />
     27         <activity android:name=".ResizeableActivity"
     28                 android:resizeableActivity="true"
     29                 android:exported="true"
     30                 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
     31         />
     32         <activity android:name=".NonResizeableActivity"
     33                 android:resizeableActivity="false"
     34                 android:exported="true"
     35         />
     36         <activity android:name=".DockedActivity"
     37                 android:resizeableActivity="true"
     38                 android:exported="true"
     39                 android:taskAffinity="nobody.but.DockedActivity"
     40         />
     41         <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         />
     47         <activity android:name=".NoRelaunchActivity"
     48                 android:resizeableActivity="true"
     49                 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|fontScale"
     50                 android:exported="true"
     51                 android:taskAffinity="nobody.but.NoRelaunchActivity"
     52         />
     53         <activity android:name=".SlowCreateActivity"
     54                 android:resizeableActivity="true"
     55                 android:exported="true"
     56         />
     57         <activity android:name=".LaunchingActivity"
     58                 android:resizeableActivity="true"
     59                 android:exported="true"
     60                 android:taskAffinity="nobody.but.LaunchToSideActivity"
     61         />
     62         <activity android:name=".PipActivity"
     63                 android:resizeableActivity="true"
     64                 android:supportsPictureInPicture="true"
     65                 android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
     66                 android:exported="true"
     67         />
     68         <activity android:name=".AutoEnterPipActivity"
     69                   android:resizeableActivity="true"
     70                   android:supportsPictureInPicture="true"
     71                   android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
     72                   android:exported="true"
     73         />
     74         <activity android:name=".AlwaysFocusablePipActivity"
     75                   android:theme="@style/Theme.Transparent"
     76                   android:resizeableActivity="true"
     77                   android:supportsPictureInPicture="true"
     78                   androidprv:alwaysFocusable="true"
     79                   android:exported="true"
     80                   android:taskAffinity="nobody.but.AlwaysFocusablePipActivity"
     81         />
     82         <activity android:name=".LaunchIntoPinnedStackPipActivity"
     83                   android:resizeableActivity="true"
     84                   android:supportsPictureInPicture="true"
     85                   androidprv:alwaysFocusable="true"
     86                   android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
     87                   android:exported="true"
     88         />
     89         <activity android:name=".VisibleBehindActivity"
     90                   android:resizeableActivity="true"
     91                   android:supportsPictureInPicture="true"
     92                   android:exported="true"
     93                   android:taskAffinity="nobody.but.VisibleBehindActivity"
     94         />
     95         <activity android:name=".LaunchPipOnPipActivity"
     96                   android:resizeableActivity="true"
     97                   android:supportsPictureInPicture="true"
     98                   android:taskAffinity="nobody.but.LaunchPipOnPipActivity"
     99                   android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
    100                   android:exported="true"
    101         />
    102         <activity android:name=".FreeformActivity"
    103                   android:resizeableActivity="true"
    104                   android:taskAffinity="nobody.but.FreeformActivity"
    105                   android:exported="true"
    106         />
    107         <activity android:name=".TopLeftLayoutActivity"
    108                   android:resizeableActivity="true"
    109                   android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
    110                   android:exported="true">
    111                   <layout android:defaultWidth="240dp"
    112                           android:defaultHeight="160dp"
    113                           android:gravity="top|left"
    114                           android:minWidth="100dp"
    115                           android:minHeight="80dp"
    116                   />
    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%"
    123                           android:defaultHeight="35%"
    124                           android:gravity="top|right"
    125                           android:minWidth="100dp"
    126                           android:minHeight="80dp"
    127                   />
    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%"
    134                           android:defaultHeight="35%"
    135                           android:gravity="bottom|left"
    136                           android:minWidth="100dp"
    137                           android:minHeight="80dp"
    138                   />
    139         </activity>
    140         <activity android:name=".BottomRightLayoutActivity"
    141                   android:resizeableActivity="true"
    142                   android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
    143                   android:exported="true">
    144                   <layout android:defaultWidth="240dp"
    145                           android:defaultHeight="160dp"
    146                           android:gravity="bottom|right"
    147                           android:minWidth="100dp"
    148                           android:minHeight="80dp"
    149                   />
    150         </activity>
    151         <activity android:name=".TurnScreenOnActivity"
    152                   android:exported="true"
    153         />
    154         <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         />
    162         <activity android:name=".TrampolineActivity"
    163                   android:exported="true"
    164                   android:theme="@android:style/Theme.NoDisplay"
    165         />
    166         <activity android:name=".BroadcastReceiverActivity"
    167                   android:resizeableActivity="true"
    168                   android:exported="true"
    169         />
    170         <activity-alias android:enabled="true"
    171                 android:exported="true"
    172                 android:name=".EntryPointAliasActivity"
    173                 android:targetActivity=".TrampolineActivity" >
    174         </activity-alias>
    175     </application>
    176 </manifest>
    177 
    178