0
votes

Trying to disable sound of Push Notifications in my phonegap(2.2.0) app using

setSoundEnabled(Boolean enabled, callback)

Note: Android Only, iOS sound settings come in the push ,

mentioned here .

Push Notifications are coming with sound, unable disable sound.

1

1 Answers

0
votes

Found a way by setting PushPreferences

PushPreferences prefs = PushManager.shared().getPreferences();
prefs.setSoundEnabled (false);