• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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            android:theme="@style/Theme.Example.Leanback.Browse">
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="BrowseAnimationActivity"
26            android:exported="true" >
27        </activity>
28
29        <activity android:name="DetailsActivity"
30            android:theme="@style/Theme.Example.Leanback.Details"
31            android:exported="true" />
32
33        <activity android:name="RowsActivity"
34            android:theme="@style/Theme.Example.Leanback.Rows"
35            android:exported="true" />
36
37        <activity android:name="PlaybackOverlayActivity"
38            android:exported="true" />
39
40        <activity android:name="VerticalGridActivity"
41            android:exported="true" />
42
43        <activity android:name="SearchActivity"
44            android:exported="true" />
45
46        <activity android:name="BrowseErrorActivity"
47                  android:exported="true" />
48
49        <activity android:name="HorizontalGridTestActivity"
50            android:exported="true" />
51    </application>
52</manifest>
53