add initial android tv support
This commit is contained in:
parent
e11aadae11
commit
2bb14f8965
|
@ -48,11 +48,16 @@
|
|||
android:name="android.permission.PACKAGE_USAGE_STATS"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
tools:ignore="ProtectedPermissions" />
|
||||
<uses-feature android:name="android.software.leanback"
|
||||
android:required="false" />
|
||||
<uses-feature android:name="android.hardware.touchscreen"
|
||||
android:required="false" />
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:name="com.jmstudios.redmoon.RedMoonApplication"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:banner="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/LaunchScreenTheme"
|
||||
android:supportsRtl="true" >
|
||||
|
@ -66,6 +71,7 @@
|
|||
<intent-filter>
|
||||
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES"/>
|
||||
|
|
Loading…
Reference in New Issue