Hold_action on a picture-entity card not working from android

Hi people,

My dashboard has a few picture entity_cards that look like small buttons.
I have the following tap_action and hold_action

- type: vertical-stack
    cards:
      - type: markdown
        content: |-
          {% if float(states('input_number.hlp_sofa_level')) == 0  %}
          Sofa
          {% else %}
          {{states('input_number.hlp_sofa_level')|round()-64 }}
          {% endif %}
        theme: happy
      - show_state: false
        show_name: true
        type: picture-entity
        entity: button.lr_floorlamp_on
        image: /local/plaatjes/Standing_1.png
        name: FLOOR
        tap_action:
          action: call-service
          service: input_text.set_value
          data:
            value: Seq/SOFON
            entity_id: input_text.hlp_lv_textcommand
        hold_action:
          action: call-service
          service: input_text.set_value
          data:
            value: RF/SofOF
            entity_id: input_text.hlp_lv_textcommand

Both the tap_action and hold_action work when I press or hold the picture-element from the PC. That is, the text of the input_text.hlp_lv_textcommand changes as seen in the Developer tools
When I interact with the picture-element on my Android phone, the tap_action works, but the hold_action does not

Hi,

Please check on github;

Having the same issue

type: picture
tap_action:
  action: perform-action
  target:
    entity_id:
      - media_player.woonkamer
  data:
    media_content_type: TUNEIN
    media_content_id: speel qmusic op woonkeuken
  perform_action: media_player.play_media
image: /local/tmp/Qmusic.png
hold_action:
  action: perform-action
  target:
    entity_id: media_player.woonkamer
  data:
    media_content_id: speel qmusic op overal
    media_content_type: TUNEIN
  perform_action: media_player.play_media