我正在使用react-native-sound
并在 iOS 12 设备上播放声音,但是当我签入 iOS 13 设备时没有播放。
这是我的代码
this.soundPlayer = new Sound(require('../assets/fly.mp3'), '', (error) => {
console.log(error)
if (error) {
console.log('failed to load the sound', error);
return;
}
this.soundPlayer.play()
})