plugins
plugins copied to clipboard
Local notification Custom sound
Custom sound not working when android is android api <= 25. It also does not generate an error
The error is here. Builder.java line 125.
Change this:
if (options.has("sound")) { builder.setSound(android.media.RingtoneManager.getDefaultUri(android.media.RingtoneManager.TYPE_NOTIFICATION)); }
for this
if (!options.has("sound")) { builder.setSound(android.media.RingtoneManager.getDefaultUri(android.media.RingtoneManager.TYPE_NOTIFICATION)); }