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 
     10     <application
     11         android:label="@string/app_name"
     12         android:icon="@drawable/ic_launcher"
     13         android:banner="@drawable/ic_launcher"
     14         android:supportsRtl="true"
     15         android:theme="@style/Theme.Example.Leanback">
     16 
     17         <activity android:name="MainActivity"
     18             android:label="@string/app_name">
     19             <intent-filter>
     20                 <action android:name="android.intent.action.MAIN" />
     21                 <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
     22             </intent-filter>
     23         </activity>
     24 
     25         <activity android:name="BrowseActivity"
     26             android:theme="@style/Theme.Example.Leanback.Browse"
     27             android:exported="true" />
     28 
     29         <activity android:name="BrowseSupportActivity"
     30             android:theme="@style/Theme.Example.Leanback.Browse"
     31             android:exported="true" />
     32 
     33         <activity android:name="BrowseAnimationActivity"
     34             android:exported="true" >
     35         </activity>
     36 
     37         <activity android:name="DetailsActivity"
     38             android:theme="@style/Theme.Example.Leanback.Details"
     39             android:exported="true" />
     40 
     41         <activity android:name="DetailsSupportActivity"
     42             android:theme="@style/Theme.Example.Leanback.Details"
     43             android:exported="true" />
     44 
     45         <activity android:name="SearchDetailsActivity"
     46             android:theme="@style/Theme.Example.Leanback.SearchDetails"
     47             android:exported="true" />
     48 
     49         <activity android:name="SearchDetailsSupportActivity"
     50             android:theme="@style/Theme.Example.Leanback.SearchDetails"
     51             android:exported="true" />
     52 
     53         <activity android:name="RowsActivity"
     54             android:theme="@style/Theme.Example.Leanback.Rows"
     55             android:exported="true" />
     56 
     57         <activity android:name="RowsSupportActivity"
     58             android:theme="@style/Theme.Example.Leanback.Rows"
     59             android:exported="true" />
     60 
     61         <activity android:name="PlaybackOverlayActivity"
     62             android:configChanges=
     63                 "screenSize|smallestScreenSize|screenLayout|orientation"
     64             android:resizeableActivity="true"
     65             android:supportsPictureInPicture="true"
     66             android:launchMode="singleTask"
     67             android:exported="true" />
     68 
     69         <activity android:name="PlaybackOverlaySupportActivity"
     70             android:configChanges=
     71                 "screenSize|smallestScreenSize|screenLayout|orientation"
     72             android:resizeableActivity="true"
     73             android:supportsPictureInPicture="true"
     74             android:launchMode="singleTask"
     75             android:exported="true" />
     76 
     77         <activity android:name="VerticalGridActivity"
     78             android:theme="@style/Theme.Example.Leanback.VerticalGrid"
     79             android:exported="true" />
     80 
     81         <activity android:name="VerticalGridSupportActivity"
     82             android:theme="@style/Theme.Example.Leanback.VerticalGrid"
     83             android:exported="true" />
     84 
     85         <activity android:name="SearchActivity"
     86             android:exported="true" />
     87 
     88         <activity android:name="SearchSupportActivity"
     89             android:exported="true" />
     90 
     91         <activity android:name="BrowseErrorActivity"
     92             android:theme="@style/Theme.Example.Leanback.Browse"
     93             android:exported="true" />
     94 
     95         <activity android:name="BrowseErrorSupportActivity"
     96             android:theme="@style/Theme.Example.Leanback.Browse"
     97             android:exported="true" />
     98 
     99         <activity android:name="HorizontalGridTestActivity"
    100             android:exported="true" />
    101 
    102         <activity android:name="GuidedStepActivity"
    103             android:theme="@style/Theme.Example.Leanback.GuidedStep"
    104             android:windowSoftInputMode="adjustResize"
    105             android:exported="true" />
    106 
    107         <activity android:name="GuidedStepSupportActivity"
    108             android:theme="@style/Theme.Example.Leanback.GuidedStep"
    109             android:windowSoftInputMode="adjustResize"
    110             android:exported="true" />
    111 
    112         <activity android:name="GuidedStepHalfScreenActivity"
    113             android:theme="@style/Theme.Example.Leanback.GuidedStep.Half"
    114             android:windowSoftInputMode="adjustResize"
    115             android:exported="true" />
    116 
    117         <activity android:name="GuidedStepSupportHalfScreenActivity"
    118             android:theme="@style/Theme.Example.Leanback.GuidedStep.Half"
    119             android:windowSoftInputMode="adjustResize"
    120             android:exported="true" />
    121 
    122         <activity android:name="DetailsPresenterSelectionActivity"
    123             android:theme="@style/Theme.Example.Leanback.GuidedStep"
    124             android:exported="true" />
    125 
    126         <activity android:name=".OnboardingActivity"
    127                   android:theme="@style/Theme.Example.Leanback.Onboarding"
    128                   android:exported="true" />
    129 
    130         <activity android:name=".OnboardingSupportActivity"
    131                   android:theme="@style/Theme.Example.Leanback.Onboarding"
    132                   android:exported="true" />
    133 
    134     </application>
    135 </manifest>
    136