Files
streamyfin/modules/tv-recommendations/android/src/main/AndroidManifest.xml
2026-05-21 13:55:26 +02:00

12 lines
347 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" />
</intent-filter>
</receiver>
</application>
</manifest>