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="19" />
      8 
      9     <application
     10         android:label="@string/app_name"
     11         android:icon="@drawable/ic_launcher"
     12         android:banner="@drawable/ic_launcher"
     13         android:supportsRtl="true"
     14         android:theme="@style/Theme.Example.Leanback">
     15 
     16         <activity android:name="MainActivity"
     17             android:label="@string/app_name">
     18             <intent-filter>
     19                 <action android:name="android.intent.action.MAIN" />
     20                 <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
     21             </intent-filter>
     22         </activity>
     23 
     24         <activity android:name="BrowseActivity"
     25             android:theme="@style/Theme.Example.Leanback.Browse"
     26             android:exported="true" />
     27 
     28         <activity android:name="BrowseAnimationActivity"
     29             android:exported="true" >
     30         </activity>
     31 
     32         <activity android:name="DetailsActivity"
     33             android:theme="@style/Theme.Example.Leanback.Details"
     34             android:exported="true" />
     35 
     36         <activity android:name="SearchDetailsActivity"
     37             android:theme="@style/Theme.Example.Leanback.SearchDetails"
     38             android:exported="true" />
     39 
     40         <activity android:name="RowsActivity"
     41             android:theme="@style/Theme.Example.Leanback.Rows"
     42             android:exported="true" />
     43 
     44         <activity android:name="PlaybackOverlayActivity"
     45             android:exported="true" />
     46 
     47         <activity android:name="VerticalGridActivity"
     48             android:exported="true" />
     49 
     50         <activity android:name="SearchActivity"
     51             android:exported="true" />
     52 
     53         <activity android:name="BrowseErrorActivity"
     54             android:exported="true" />
     55 
     56         <activity android:name="HorizontalGridTestActivity"
     57             android:exported="true" />
     58 
     59         <activity android:name="GuidedStepActivity"
     60             android:theme="@style/Theme.Example.Leanback.GuidedStep"
     61             android:exported="true" />
     62 
     63         <activity android:name="DetailsPresenterSelectionActivity"
     64             android:theme="@style/Theme.Example.Leanback.GuidedStep"
     65             android:exported="true" />
     66 
     67     </application>
     68 </manifest>
     69