|
@@ -1,6 +1,10 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
+
|
|
|
+ <!-- AndroidTV support -->
|
|
|
+ <uses-feature android:name="android.software.leanback" android:required="false" />
|
|
|
+
|
|
|
<application
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
android:label="@string/app_name"
|
|
@@ -15,6 +19,8 @@
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
+ <!-- AndroidTV support -->
|
|
|
+ <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
|
|
</intent-filter>
|
|
|
</activity>
|
|
|
|