Android TTS notifications don't work since 2026.2.2

Since updating to 2026.2.2 my android phone notifications that include text to speech no longer work. I’ve tried:

actions:
  - action: notify.mobile_app_phone_name
    data:
      message: TTS
      tts_text: "test message"

and

  - action: notify.mobile_app_phone_name
    data: 
      message: "test message"
      tts: true

Error: extra keys not allowed @ data[‘tts’]
Error: extra keys not allowed @ data[‘tts_text’]

This worked fine until yesterday. I’m running home assistant on a generic x86.

  • Installation method Home Assistant OS
  • Core 2026.2.2
  • Supervisor 2026.02.2
  • Operating System 17.1
  • Frontend 20260128.6

My phone app is updated to the latest, 2026.2.1-full, and I’ve cleared all caches and restarted without success. Is anyone else seeing this as a new bug?

OK, in case anyone else is using this, I found the currently working code:

  • action: notify.mobile_phone_name
    data:
    message: TTS
    title: TEST
    data:
    tts_text: This is a test
    media_stream: alarm_stream
    ttl: 0
    priority: high

Great that you found the solution. Could you format the post with the solution to use code formatting so the indentation is visible

Sorry, I haven’t been around for the last week. Here’s a sample:

action: notify.mobile_phone_name
data:
  message: TTS
  title: Goodnight
  data:
    tts_text: Goodnight Lee. {{ lock_message }}
    media_stream: alarm_stream
    ttl: 0
    priority: high