Skip to content

Instantly share code, notes, and snippets.

@michael-riha
Last active January 4, 2019 08:17
Show Gist options
  • Save michael-riha/799ab88335398a6e99ff613104d5a2ec to your computer and use it in GitHub Desktop.
Save michael-riha/799ab88335398a6e99ff613104d5a2ec 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