107 lines
3.9 KiB
XML
107 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.example.android.leanback"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
|
|
<uses-sdk android:minSdkVersion="17" android:targetSdkVersion="19" />
|
|
|
|
<application
|
|
android:label="@string/app_name"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:banner="@drawable/ic_launcher"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.Example.Leanback">
|
|
|
|
<activity android:name="MainActivity"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="BrowseActivity"
|
|
android:theme="@style/Theme.Example.Leanback.Browse"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="BrowseSupportActivity"
|
|
android:theme="@style/Theme.Example.Leanback.Browse"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="BrowseAnimationActivity"
|
|
android:exported="true" >
|
|
</activity>
|
|
|
|
<activity android:name="DetailsActivity"
|
|
android:theme="@style/Theme.Example.Leanback.Details"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="DetailsSupportActivity"
|
|
android:theme="@style/Theme.Example.Leanback.Details"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="SearchDetailsActivity"
|
|
android:theme="@style/Theme.Example.Leanback.SearchDetails"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="SearchDetailsSupportActivity"
|
|
android:theme="@style/Theme.Example.Leanback.SearchDetails"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="RowsActivity"
|
|
android:theme="@style/Theme.Example.Leanback.Rows"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="RowsSupportActivity"
|
|
android:theme="@style/Theme.Example.Leanback.Rows"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="PlaybackOverlayActivity"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="PlaybackOverlaySupportActivity"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="VerticalGridActivity"
|
|
android:theme="@style/Theme.Example.Leanback.VerticalGrid"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="VerticalGridSupportActivity"
|
|
android:theme="@style/Theme.Example.Leanback.VerticalGrid"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="SearchActivity"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="SearchSupportActivity"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="BrowseErrorActivity"
|
|
android:theme="@style/Theme.Example.Leanback.Browse"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="BrowseErrorSupportActivity"
|
|
android:theme="@style/Theme.Example.Leanback.Browse"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="HorizontalGridTestActivity"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="GuidedStepActivity"
|
|
android:theme="@style/Theme.Example.Leanback.GuidedStep"
|
|
android:windowSoftInputMode="adjustResize"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="GuidedStepSupportActivity"
|
|
android:theme="@style/Theme.Example.Leanback.GuidedStep"
|
|
android:windowSoftInputMode="adjustResize"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="DetailsPresenterSelectionActivity"
|
|
android:theme="@style/Theme.Example.Leanback.GuidedStep"
|
|
android:exported="true" />
|
|
|
|
</application>
|
|
</manifest>
|