mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-09 15:38:39 +01:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
14 lines
541 B
XML
14 lines
541 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<application>
|
|
<receiver android:name=".TvRecommendationsReceiver" android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.media.tv.action.INITIALIZE_PROGRAMS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.media.tv.action.PREVIEW_PROGRAM_BROWSABLE_DISABLED" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
</manifest>
|