Ionic Push v2 api - push alerts have no sound or vibration

Following the instructions here http://docs.ionic.io/docs/push-sending-push#section-adding-custom-data-to-your-notifications

The docs specifcally say that if you don’t include the sound property the default sound will be used. This doesn’t seem to work. The push alerts make no sound.

Registering push:

var push = new Ionic.Push({
  "debug": true
});

push.register(function (token) {
   push.saveToken(token); 
});

My notification object:

"notification": {
      "title": "My Title",
      "message": "test message",
       "ios": {
         "message": "test message"
       }
 }

Is there some critical step I’m missing here because it doesn’t seem to be in the docs if there is?

Same problem here… Did you find a solution?

Edit: I find the solution. You need disable limited push so the push can contain payload data.

ionic config set dev_push false

1 Like

You god dude :slight_smile: