mirror of https://github.com/FongMi/TV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
5.4 KiB
133 lines
5.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.fongmi.android.tv">
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.camera"
|
|
android:required="false" />
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
<application>
|
|
|
|
<activity
|
|
android:name=".ui.activity.MainActivity"
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
|
|
android:exported="true"
|
|
android:screenOrientation="fullUser"
|
|
android:windowSoftInputMode="adjustPan">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEND" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="text/plain" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="content" />
|
|
<data android:scheme="file" />
|
|
<data android:mimeType="video/*" />
|
|
<data android:mimeType="audio/*" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="smb" />
|
|
<data android:scheme="http" />
|
|
<data android:scheme="https" />
|
|
<data android:mimeType="video/*" />
|
|
<data android:mimeType="audio/*" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="ftp" />
|
|
<data android:scheme="ed2k" />
|
|
<data android:scheme="magnet" />
|
|
<data android:scheme="thunder" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="mitv" />
|
|
<data android:scheme="jianpian" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".ui.activity.CollectActivity"
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout"
|
|
android:screenOrientation="fullUser" />
|
|
|
|
<activity
|
|
android:name=".ui.activity.DetailActivity"
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
|
|
android:excludeFromRecents="true"
|
|
android:launchMode="singleTask"
|
|
android:resizeableActivity="true"
|
|
android:screenOrientation="fullUser"
|
|
android:supportsPictureInPicture="true"
|
|
android:theme="@style/AppTheme.Detail" />
|
|
|
|
<activity
|
|
android:name=".ui.activity.HistoryActivity"
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout"
|
|
android:screenOrientation="fullUser" />
|
|
|
|
<activity
|
|
android:name=".ui.activity.KeepActivity"
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout"
|
|
android:screenOrientation="fullUser" />
|
|
|
|
<activity
|
|
android:name=".ui.activity.LiveActivity"
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
|
|
android:excludeFromRecents="true"
|
|
android:launchMode="singleTask"
|
|
android:resizeableActivity="true"
|
|
android:screenOrientation="sensorLandscape"
|
|
android:supportsPictureInPicture="true" />
|
|
|
|
<activity
|
|
android:name=".ui.activity.VodActivity"
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout"
|
|
android:screenOrientation="fullUser" />
|
|
|
|
<activity
|
|
android:name=".ui.activity.ScanActivity"
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout"
|
|
android:screenOrientation="fullUser" />
|
|
|
|
<service
|
|
android:name="com.android.cast.dlna.dmc.DLNACastService"
|
|
android:exported="false" />
|
|
|
|
<service
|
|
android:name=".service.PlaybackService"
|
|
android:exported="true"
|
|
android:foregroundServiceType="mediaPlayback">
|
|
<intent-filter>
|
|
<action android:name="androidx.media3.session.MediaSessionService" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
</application>
|
|
</manifest> |