Replies: 2 comments 3 replies
-
The intent you found is part of a query definition to let the system know we're interested in finding out which apps can play YouTube videos, this is used for trailer playback. At this time we do not have deeplink support in our Android apps. We do implement the Android search action and the view action (data = item id). |
Beta Was this translation helpful? Give feedback.
1 reply
-
What activity can I use to launch jellyfin's android tv version from Home Assistant? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using the Android TV Remote extension for Home Assistant to build a nice UI for controlling my Sony TVs with ATV. In order to launch apps on the TV, the platform uses deeplinks to start specific ones. An explanation of the deeplink scheme is found at:
The HA ATV Deeplink Guide
In that doc there is a list of apps which can be launched with their respective link strings. Most allow a URL format or sometimes a string of the form :// e.g. hulu:// or plex://
I tried using the HA developer tool to call the ATV service with parameter strings like jellyfin:// or JellyfinApplication:// which fails. (Using the same call method does launch YouTube, etc. successfuly.)
I retrieved the jellyfin-androidtv sources and looked for the android:host string in all of the AndroidManifest.xml files and found the section which would usually implement the deeplink is configured like this:
...which uses a URL to YouTube. If this were changed to something like:
and pushed out in the next update it would probably implement a proper deeplink to the Jellyfin app. (I believe....)
Beta Was this translation helpful? Give feedback.
All reactions