Local notification sound not working

please help me, i don’t why notification not have sound?

this.filePath.resolveNativePath('file://assets/sounds/notifi1.mp3')
    .then(filePath => {
      console.log(filePath);
      this.localNotifications.schedule({
        id: 1,
        title: title,
        text: message,
        led: 'FF0000',
        icon: 'file://assets/icon/favicon.png',
        sound: filePath
      });
    })
    .catch(err => console.log(err));

other code but not working

/ this.localNotifications.schedule({
    //   id: 1,
    //   title: title,
    //   text: message,
    //   led: 'FF0000',
    //   // trigger: { at: new Date(new Date().getTime() + 2000) },
    //   vibrate: true,
    //   foreground: true,
    //   icon: 'file://assets/icon/favicon.png',
    //   smallIcon: 'res://ic_launcher.png',
    //   sound: this.platform.is('android') ? 'file://assets/sounds/notifi_1.mp3' : 'file://assets/sounds/notifi_2.mp3'
    // });

HI, have you solved the issue? I’m facing same. can you help me?