Adding sound to ended calls

Nawepej

New member
Hey. So, as you know, starting with Android 11, if the phone is set to silent, there is no end tone when ending a call, which is pretty annoying since I can't tell whether the call has ended or not if the screen is off. Unless there is a setting to enable end tones regardless of whether the phone is set to silent or not (which I cannot find), I am trying to recreate it, but can't find a proper formula. Basically, I would like for the end tone to simply ignore when the phone is set to silent or DnD.
This is what I've fiddled with so far:
Screenshot_20230330-115735.png
But there are some shortcomings to it:
- This temporarily sets the phone to sound while in a call, which is pretty annoying when I receive other notifications during that call (and obviously they make a sound).
- If the phone was NOT on silent, but on sound, then the macro will ignore this and set it on silent anyway. I would like the macro to not change the phone's sound/silent state. The only change should be from sound to silent IF the macro had already set the phone from silent to sound (in order to send the end tone).

Please offer me some suggestions for improvement or a way to make the end tone appear in a more simple manner. Thank you!
 

MacroDroidDev

Administrator
Staff member
Perhaps you could just do something with just the call ended trigger like this.

T: Call ended
A: IF (silent mode is On)
A: Play Sound on Alarm stream
A: ENDIF

This is assuming your alarm audio stream is not zero at this point.
 
Top