feat(mobile): android tv manifest

This commit is contained in:
ThaUnknown 2023-12-07 22:38:09 +01:00
parent bc528c5cac
commit 053c4adb10

View file

@ -18,7 +18,17 @@
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- added scheme rest is generated -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="tv.ouya.intent.category.APP" />
</intent-filter>
<intent-filter>
<data android:scheme="miru" />
@ -40,4 +50,6 @@
<!-- Permissions -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-feature android:name="android.software.leanback" android:required="false" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
</manifest>