SupportLeanbackDemos starts out with a fully functional app with a BrowseFragment. Still need to add examples with cursors, hovercards, and more. Change-Id: I845d5b92c29a5585af7968b08e7daa11b2996f5a
24 lines
839 B
XML
24 lines
839 B
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:theme="@style/Theme.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>
|
|
</application>
|
|
</manifest>
|