Skip to content

Instantly share code, notes, and snippets.

@rusmichal
Last active March 1, 2018 09:36
Show Gist options
  • Save rusmichal/4099ff8f8c0c00dfb260c248cc796a94 to your computer and use it in GitHub Desktop.
Save rusmichal/4099ff8f8c0c00dfb260c248cc796a94 to your computer and use it in GitHub Desktop.
<application
android:banner="@drawable/banner" >
...
<activity
android:name="com.example.android.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.android.TvActivity"
android:label="@string/app_name"
android:theme="@style/Theme.Leanback">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
</activity>
</application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment