Merge pull request #2514 from sigmabeta/android-tv-support

Android TV: Allow the app to be launched from an Android TV launcher.
This commit is contained in:
Ryan Houdek 2015-06-05 18:30:32 -04:00
commit 63f41ce54e
3 changed files with 14 additions and 1 deletions

View File

@ -1,6 +1,16 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.dolphinemu.dolphinemu">
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false"/>
<uses-feature
android:name="android.hardware.gamepad"
android:required="false"/>
<uses-feature
android:name="android.software.leanback"
android:required="false"/>
<uses-feature android:glEsVersion="0x00030000" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
@ -10,7 +20,9 @@
<application
android:icon="@drawable/ic_launcher"
android:allowBackup="true"
android:supportsRtl="true">
android:supportsRtl="true"
android:isGame="true"
android:banner="@drawable/banner_tv">
<activity
android:name=".activities.GameGridActivity"
@ -21,6 +33,7 @@
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB