0

我正在使用本机反应在即时通讯上创建react native应用程序,直到 最后一次更新,当我在通知声音上上传捆绑包时,我在反应导航页面旧 AAB 中使用的声音播放正常,但在更新后出现此问题googleplaypushNotificationreact-native-soundgoogleplay

当我在 android 中清除数据时,通知声音工作正常,没有任何冲突通知配置在 App.js 中,每件事都是代码正确且响应迅速

通知

 PushNotification.localNotificationSchedule({
      id: notificationId,
      title: lang.notificationRemaind,
      message: reminder.name, // (required)
      date: new Date(Date.now() + diffSeconds),
      allowWhileIdle: true,
      repeatType: 'week',
      channelId: 'Reminder',
      priority: 'max',
      soundName: 'remind',
    });

声音

            try {
                // play the file tone.mp3
                SoundPlayer.playSoundFile('firework', 'mp3')
            } catch (e) {
                console.log(`cannot play the sound file`, e)
            }
4

0 回答 0