Android TV Remote - App Links/Deep Linking - Guide

Try fonsetv://, just fonse:// seems to try and open the mobile app version which obviously doesn’t work.

That works for me on my Google TV.

1 Like

I’ve tried every combo, can’t seem to find a deep link for frndlytv. Only thing I’ve found was this:

com.tvapp.frndlytv:// Which doesn’t work

            <intent-filter>
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <category android:name="android.intent.category.BROWSABLE"/>
                <data android:scheme="amzn" android:host="com.tvapp.frndlytv"/>
            </intent-filter>

Has anyone already found the link for the Go Play app ? (app for the Belgian TV channels Play4, Play5, Play6 and Play7)
I analysed the AndroidManifest.xml and could not find a working link.

hey finally app for go play about time go find out what is possible let you know something!

very unfortunate but can’t find a good apk version of the goplay that displays jar file to find out what the deep link is and so can’t find anything at the moment hopefully someone else?

You can add this to the List
For the Standard Emby Android app it is:

emby://items/

Please do not confuse with the Emby ATV app, there are 2 apps.

I have put the AndroidManifest.xml of the Go Play app in this pastebin:
https://pastebin.com/yxNW2td8

Try
amzn://com.tvapp.frndlytv

Thank you, but unfortunately it does not. I also tried amzn://com.tvapp.frndlytv://

hey indeed do not come across much in the code of goplay app too bad wall would have been useful but is not so now

Same here. cant find the one for npo so i keep using my original script which works just as well and switches on the google tv too.
Also it does start the app if another app, for example Netflix, is allready running

alias: PlayNPO
sequence:
  - service: media_player.turn_on
    data: {}
    target:
      entity_id: media_player.google_tv
  - service: media_player.select_source
    data:
      source: NPO
    target:
      entity_id:
        - media_player.google_tv
mode: single
icon: mdi:television

Sorry if I’m missed something obvious here but when I try to add a device for this Integration I get the error: Failed to connect despite the TV definitely being connected to the same network at the correct IP address (as checked in the TV settings).

EDIT: I have successfully paired a second TV, but the first one won’t connect…and a 3rd TV won’t connect either

Anyone found the deeplink for Tune-in radio allready ?

is this an automation ?
tried it like this but doesnt work as a button

      - type: picture
        image: https://www.npostart.nl/images/npo-plus.svg
        tap_action:
          action: call-service
          service: media_player.select_source
          target:
            device_id: media_player.tv_wk
          data:
            source: NPO
        hold_action:
          action: none

hi, unfortunately i can`t find the option to edit the table. But this works for waipu.tv:

  • start the app and live TV: waipu://tv
  • start the app in epg overview: waipu://epg
  • start the app in recordings overview: waipu://recordings

I got YouTube TV to work with Chromecast with Google TV using ADB instead:

          - service: androidtv.adb_command
            data:
              command: >-
                am start -a android.intent.action.VIEW -d "https://tv.youtube.com/browse/UCakwQ1jKQnYJcUMghvnp-Yw"
                com.google.android.youtube.tvunplugged
            target:
              entity_id: media_player.android_tv

That command will take you to the ESPN screen, for example.

1 Like

Do you also he e the liks for goplay and streamz?

Paramount Plus: https://www.paramountplus.com
Pluto: https://pluto.tv/en/live-tv
Tubi: https://tubitv.com

1 Like

I’ve made a github repo since things get really messy in the end in a forum post.

7 Likes

Hello,

I try to use a deeplink i found but seems to not working

service: remote.turn_on
data:
  activity: https://www.netflix.com/watch/70303977
target:
  entity_id: remote.shield

It is for watching directly a movie with the id of it.

Over adb it will work

adb shell am start -c android.intent.category.LEANBACK_LAUNCHER -a android.intent.action.VIEW -d http://www.netflix.com/watch/70303977 -f 0x10808000 -e source 30 com.netflix.ninja/.MainActivity

It is possible to launch a movie directly with HA ?