feat(android-tv): TV recommendations (#1575)

This commit is contained in:
Steve Byatt
2026-05-21 12:55:26 +01:00
committed by GitHub
parent 121ff0eea0
commit 11a4f14732
18 changed files with 923 additions and 128 deletions

View File

@@ -0,0 +1,11 @@
<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>