No sound in a push notification on Android(Ionic capacitor)

I have a problem when i implemented a plugin PushNotification in capacitor, the problem is that when te phone receive a push notification don´t make any sound. This is my code.

PushNotifications.addListener('pushNotificationReceived',
  (notification: PushNotification) => {
    console.log('Push received: ',JSON.stringify(notification));

  }

this is the settings in capacitor.config.json

"PushNotifications": {
  "presentationOptions": ["badge", "sound", "alert"]
}

any workarround for this issue?

Also I have the same problem with the same configuration. Notifications are enabled in the settings but no sound or vibration is emitted when they are received.