简体   繁体   中英

Disable sound in push notification phonegap - android

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.

Found a way by setting PushPreferences

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM