AndroidManifest.xml revision 65a34663cf08f17738720000ee9900fe714578ef
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="BrowseSupportActivity"
29            android:theme="@style/Theme.Example.Leanback.Browse"
30            android:exported="true" />
31
32        <activity android:name="BrowseAnimationActivity"
33            android:exported="true" >
34        </activity>
35
36        <activity android:name="DetailsActivity"
37            android:theme="@style/Theme.Example.Leanback.Details"
38            android:exported="true" />
39
40        <activity android:name="DetailsSupportActivity"
41            android:theme="@style/Theme.Example.Leanback.Details"
42            android:exported="true" />
43
44        <activity android:name="SearchDetailsActivity"
45            android:theme="@style/Theme.Example.Leanback.SearchDetails"
46            android:exported="true" />
47
48        <activity android:name="SearchDetailsSupportActivity"
49            android:theme="@style/Theme.Example.Leanback.SearchDetails"
50            android:exported="true" />
51
52        <activity android:name="RowsActivity"
53            android:theme="@style/Theme.Example.Leanback.Rows"
54            android:exported="true" />
55
56        <activity android:name="RowsSupportActivity"
57            android:theme="@style/Theme.Example.Leanback.Rows"
58            android:exported="true" />
59
60        <activity android:name="PlaybackOverlayActivity"
61            android:configChanges=
62                "screenSize|smallestScreenSize|screenLayout|orientation"
63            android:resizeableActivity="true"
64            android:supportsPictureInPicture="true"
65            android:exported="true" />
66
67        <activity android:name="PlaybackOverlaySupportActivity"
68            android:configChanges=
69                "screenSize|smallestScreenSize|screenLayout|orientation"
70            android:resizeableActivity="true"
71            android:supportsPictureInPicture="true"
72            android:exported="true" />
73
74        <activity android:name="VerticalGridActivity"
75            android:theme="@style/Theme.Example.Leanback.VerticalGrid"
76            android:exported="true" />
77
78        <activity android:name="VerticalGridSupportActivity"
79            android:theme="@style/Theme.Example.Leanback.VerticalGrid"
80            android:exported="true" />
81
82        <activity android:name="SearchActivity"
83            android:exported="true" />
84
85        <activity android:name="SearchSupportActivity"
86            android:exported="true" />
87
88        <activity android:name="BrowseErrorActivity"
89            android:theme="@style/Theme.Example.Leanback.Browse"
90            android:exported="true" />
91
92        <activity android:name="BrowseErrorSupportActivity"
93            android:theme="@style/Theme.Example.Leanback.Browse"
94            android:exported="true" />
95
96        <activity android:name="HorizontalGridTestActivity"
97            android:exported="true" />
98
99        <activity android:name="GuidedStepActivity"
100            android:theme="@style/Theme.Example.Leanback.GuidedStep"
101            android:windowSoftInputMode="adjustResize"
102            android:exported="true" />
103
104        <activity android:name="GuidedStepSupportActivity"
105            android:theme="@style/Theme.Example.Leanback.GuidedStep"
106            android:windowSoftInputMode="adjustResize"
107            android:exported="true" />
108
109        <activity android:name="DetailsPresenterSelectionActivity"
110            android:theme="@style/Theme.Example.Leanback.GuidedStep"
111            android:exported="true" />
112
113    </application>
114</manifest>
115