Home | History | Annotate | Download | only in SupportLeanbackDemos
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     package="com.example.android.leanback"
      4     android:versionCode="1"
      5     android:versionName="1.0">
      6 
      7     <uses-sdk android:minSdkVersion="17" android:targetSdkVersion="23" />
      8     <uses-permission android:name="android.permission.RECORD_AUDIO" />
      9     <uses-permission android:name="android.permission.INTERNET" />
     10     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
     11 
     12     <application
     13         android:label="@string/app_name"
     14         android:icon="@drawable/ic_launcher"
     15         android:banner="@drawable/ic_launcher"
     16         android:supportsRtl="true"
     17         android:theme="@style/Theme.Example.Leanback">
     18 
     19         <activity android:name="MainActivity"
     20             android:label="@string/app_name">
     21             <intent-filter>
     22                 <action android:name="android.intent.action.MAIN" />
     23                 <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
     24             </intent-filter>
     25         </activity>
     26 
     27         <activity android:name="BrowseActivity"
     28             android:theme="@style/Theme.Example.Leanback.Browse"
     29             android:exported="true" />
     30 
     31         <activity android:name="BrowseSupportActivity"
     32             android:theme="@style/Theme.Example.Leanback.Browse"
     33             android:exported="true" />
     34 
     35         <activity android:name="BrowseAnimationActivity"
     36             android:exported="true" >
     37         </activity>
     38 
     39         <activity android:name="DetailsActivity"
     40             android:theme="@style/Theme.Example.Leanback.Details"
     41             android:exported="true" />
     42 
     43         <activity android:name="DetailsSupportActivity"
     44             android:theme="@style/Theme.Example.Leanback.Details"
     45             android:exported="true" />
     46 
     47         <activity android:name="DetailsVideoActivity"
     48             android:theme="@style/Theme.Example.Leanback.Details"
     49             android:exported="true" />
     50 
     51         <activity android:name="DetailsVideoSupportActivity"
     52             android:theme="@style/Theme.Example.Leanback.Details"
     53             android:exported="true" />
     54 
     55         <activity android:name="DetailsCustomTitleActivity"
     56             android:theme="@style/Theme.Example.Leanback.Details.CustomTitle"
     57             android:exported="true" />
     58 
     59         <activity android:name="DetailsCustomTitleSupportActivity"
     60             android:theme="@style/Theme.Example.Leanback.Details.CustomTitle"
     61             android:exported="true" />
     62 
     63         <activity android:name="SearchDetailsActivity"
     64             android:theme="@style/Theme.Example.Leanback.SearchDetails"
     65             android:exported="true" />
     66 
     67         <activity android:name="SearchDetailsSupportActivity"
     68             android:theme="@style/Theme.Example.Leanback.SearchDetails"
     69             android:exported="true" />
     70 
     71         <activity android:name="RowsActivity"
     72             android:theme="@style/Theme.Example.Leanback.Rows"
     73             android:exported="true" />
     74 
     75         <activity android:name="RowsSupportActivity"
     76             android:theme="@style/Theme.Example.Leanback.Rows"
     77             android:exported="true" />
     78 
     79         <activity android:name="PlaybackTransportControlActivity"
     80             android:configChanges=
     81                 "screenSize|smallestScreenSize|screenLayout|orientation"
     82             android:resizeableActivity="true"
     83             android:supportsPictureInPicture="true"
     84             android:launchMode="singleTask"
     85             android:exported="true" />
     86 
     87         <activity android:name="PlaybackTransportControlSupportActivity"
     88             android:configChanges=
     89                 "screenSize|smallestScreenSize|screenLayout|orientation"
     90             android:resizeableActivity="true"
     91             android:supportsPictureInPicture="true"
     92             android:launchMode="singleTask"
     93             android:exported="true" />
     94 
     95         <activity android:name="PlaybackActivity"
     96             android:configChanges=
     97                 "screenSize|smallestScreenSize|screenLayout|orientation"
     98             android:resizeableActivity="true"
     99             android:supportsPictureInPicture="true"
    100             android:launchMode="singleTask"
    101             android:exported="true" />
    102 
    103         <activity android:name="PlaybackSupportActivity"
    104             android:configChanges=
    105                 "screenSize|smallestScreenSize|screenLayout|orientation"
    106             android:resizeableActivity="true"
    107             android:supportsPictureInPicture="true"
    108             android:launchMode="singleTask"
    109             android:exported="true" />
    110 
    111         <activity android:name="PlaybackOverlayActivity"
    112             android:configChanges=
    113                 "screenSize|smallestScreenSize|screenLayout|orientation"
    114             android:resizeableActivity="true"
    115             android:supportsPictureInPicture="true"
    116             android:launchMode="singleTask"
    117             android:exported="true" />
    118 
    119         <activity android:name="PlaybackOverlaySupportActivity"
    120             android:configChanges=
    121                 "screenSize|smallestScreenSize|screenLayout|orientation"
    122             android:resizeableActivity="true"
    123             android:supportsPictureInPicture="true"
    124             android:launchMode="singleTask"
    125             android:exported="true" />
    126 
    127         <activity android:name="VerticalGridActivity"
    128             android:theme="@style/Theme.Example.Leanback.VerticalGrid"
    129             android:exported="true" />
    130 
    131         <activity android:name="VerticalGridSupportActivity"
    132             android:theme="@style/Theme.Example.Leanback.VerticalGrid"
    133             android:exported="true" />
    134 
    135         <activity android:name="SearchActivity"
    136             android:exported="true" />
    137 
    138         <activity android:name="SearchSupportActivity"
    139             android:exported="true" />
    140 
    141         <activity android:name="BrowseErrorActivity"
    142             android:theme="@style/Theme.Example.Leanback.Browse"
    143             android:exported="true" />
    144 
    145         <activity android:name="BrowseErrorSupportActivity"
    146             android:theme="@style/Theme.Example.Leanback.Browse"
    147             android:exported="true" />
    148 
    149         <activity android:name="HorizontalGridTestActivity"
    150             android:exported="true" />
    151 
    152         <activity android:name="GuidedStepActivity"
    153             android:theme="@style/Theme.Example.Leanback.GuidedStep"
    154             android:windowSoftInputMode="adjustResize"
    155             android:exported="true" />
    156 
    157         <activity android:name="GuidedStepSupportActivity"
    158             android:theme="@style/Theme.Example.Leanback.GuidedStep"
    159             android:windowSoftInputMode="adjustResize"
    160             android:exported="true" />
    161 
    162         <activity android:name="GuidedStepHalfScreenActivity"
    163             android:theme="@style/Theme.Example.Leanback.GuidedStep.Half"
    164             android:windowSoftInputMode="adjustResize"
    165             android:exported="true" />
    166 
    167         <activity android:name="GuidedStepSupportHalfScreenActivity"
    168             android:theme="@style/Theme.Example.Leanback.GuidedStep.Half"
    169             android:windowSoftInputMode="adjustResize"
    170             android:exported="true" />
    171 
    172         <activity android:name="DetailsPresenterSelectionActivity"
    173             android:theme="@style/Theme.Example.Leanback.GuidedStep"
    174             android:exported="true" />
    175 
    176         <activity android:name=".SettingsActivity"
    177                   android:theme="@style/Theme.Example.Leanback.Preferences"
    178                   android:exported="true" />
    179 
    180         <activity android:name=".OnboardingActivity"
    181                   android:theme="@style/Theme.Example.Leanback.Onboarding"
    182                   android:exported="true" />
    183 
    184         <activity android:name=".OnboardingSupportActivity"
    185                   android:theme="@style/Theme.Example.Leanback.Onboarding"
    186                   android:exported="true" />
    187 
    188         <activity android:name=".VideoActivity"
    189             android:exported="true" />
    190 
    191         <activity android:name=".VideoSupportActivity"
    192             android:exported="true" />
    193     </application>
    194 </manifest>
    195