I'm trying to make the phone toggle between silent mode , DND mode
an both
.
The only code I found for this is:
AudioManager.ringerMode = AudioManager.RINGER_MODE_SILENT
By it's name I expected it to toggle silent mode but it actually toggles DND.
The documentation is practically useless and I couldn't find any question addressing this issue on newer Android versions.
How can I toggle between these states on Android 21+?
[Note that the behavior of sound modes and DND settings may vary across Android versions and device manufacturers. This code provides a general approach and may need adjustments based on your specific use case and testing on different devices]
Hope it helps!