mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-08 23:18:31 +01:00
there was an issue where the home recommendations was deleted and then not shown again because of google TV policies Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com>
15 lines
629 B
XML
15 lines
629 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<uses-permission android:name="com.android.providers.tv.permission.WRITE_EPG_DATA" />
|
|
<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>
|