summaryrefslogtreecommitdiff
path: root/Source/Android
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Android')
-rw-r--r--Source/Android/app/src/main/AndroidManifest.xml15
-rw-r--r--Source/Android/app/src/main/res/drawable-xhdpi/banner_tv.pngbin0 -> 7486 bytes
-rw-r--r--Source/Android/app/src/main/res/drawable-xxxhdpi/banner_tv.pngbin0 -> 16240 bytes
3 files changed, 14 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/AndroidManifest.xml b/Source/Android/app/src/main/AndroidManifest.xml
index 78548b4c6c..31a673c51d 100644
--- a/Source/Android/app/src/main/AndroidManifest.xml
+++ b/Source/Android/app/src/main/AndroidManifest.xml
@@ -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>
diff --git a/Source/Android/app/src/main/res/drawable-xhdpi/banner_tv.png b/Source/Android/app/src/main/res/drawable-xhdpi/banner_tv.png
new file mode 100644
index 0000000000..36a02cb2dc
--- /dev/null
+++ b/Source/Android/app/src/main/res/drawable-xhdpi/banner_tv.png
Binary files differ
diff --git a/Source/Android/app/src/main/res/drawable-xxxhdpi/banner_tv.png b/Source/Android/app/src/main/res/drawable-xxxhdpi/banner_tv.png
new file mode 100644
index 0000000000..5b1dcd919d
--- /dev/null
+++ b/Source/Android/app/src/main/res/drawable-xxxhdpi/banner_tv.png
Binary files differ