Skip to content Skip to sidebar Skip to footer

Bluemix Android Push Notification Unable To Implement Custom Sound Notification

I'm trying to implement Bluemix Push Notification custom sound in Android with Mobile First Services Starter (MFSS) and/or Mobile App Builder. At the moment I can send simple push

Solution 1:

I just tested Push notifications with sound on the latest version of the Android Push SDK, and got it working with my Android phone.

Here is initializing my application:

Here is my sound file: enter image description here

Here was my request: enter image description here


Solution 2:

As of a few hours ago, version 2.0.1 of the Bluemix android push sdk was published to support notification sound.

Keep in mind, you will need to save your sound file in the res/raw directory and then you will be able use the documented payload like you mention:

"settings":{
     "gcm":{
     "sound":"notification.wav",
  }
 }

Apologies for the delay/confusion.


Post a Comment for "Bluemix Android Push Notification Unable To Implement Custom Sound Notification"