74 lines
2.5 KiB
XML
74 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.type.tv"
|
|
android:required="true" />
|
|
<uses-feature
|
|
android:name="android.software.leanback"
|
|
android:required="true" />
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.touchscreen"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.faketouch"
|
|
android:required="false" />
|
|
|
|
<application
|
|
android:name=".TvmonApplication"
|
|
android:allowBackup="true"
|
|
android:banner="@drawable/app_banner"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:logo="@drawable/app_logo"
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.Tvmon"
|
|
android:usesCleartextTraffic="true"
|
|
tools:targetApi="31">
|
|
|
|
<activity
|
|
android:name=".ui.main.MainActivity"
|
|
android:exported="true"
|
|
android:label="@string/app_name"
|
|
android:screenOrientation="landscape">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".ui.detail.DetailsActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
android:name=".ui.playback.PlaybackActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="landscape"
|
|
android:theme="@style/Theme.Tvmon.Search" />
|
|
|
|
<activity
|
|
android:name=".ui.search.SearchActivity"
|
|
android:exported="true"
|
|
android:label="@string/search_title"
|
|
android:screenOrientation="landscape"
|
|
android:theme="@style/Theme.Leanback">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="android.app.searchable"
|
|
android:resource="@xml/searchable" />
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|