Sound Notification to my smart phone via companion app

Hi,

I want to get notified on my Samsung Galaxy S22 when Smoke is detected in my sleeping room. It’s all working fine, I’m getting the popup on my smartphone already, exept for the sound when the phone is on vibrate or silent modus. But thit is critical. Obviously I cannot use media_stream: alarm_stream_max or channel “alarm_stream” since “Samsung” is blocking those settings on their API. Means I get the message though but no sound…

I have been working through many blogs and docs without success.
Example:

Isn’t working since I have a Samsung (I mean settings like “channel: alarm_stream”).

anybody any ideas?

My Code right now:
alias: Feuer,- oder Rauchalarm Schlafzimmer
description: Feuer,- oder Rauchalarm Familie Marx
trigger:

  • platform: state
    entity_id:
    • sensor.000a5f299a696f_smoke_detector_alarm_status
      to: smoke
      action:
  • service: notify.mobile_app_sm_wolli_s22
    data:
    title: Feuer im Schlafzimmer!
    message: >-
    Das Haus brennt! Sofort das Haus verlassen und die Katze nicht
    vergessen!
    data:
    ttl: 0
    priority: high
    channel: Wolli

Thanks a lot

Alarm:

Better to use TTS

...
  - service: notify.mobile_app_sm_wolli_s22
    data:
      message: TTS
      data:
        media_stream: alarm_stream_max
        tts_text: Das Haus brennt! Sofort das Haus verlassen und die Katze nicht
vergessen!

Good advice. It’s working with TTS
Thanks!
Wolfgang