反応ネイティブにサウンドを追加するにはどうすればよいですか? 以下のコードを使用していますが、常に error= undefined is not an object (「Howler._navigator.appVersion.match」を評価しています) が返されます。
. 以下のコードを使用しています: ( howler依存関係を使用)、「react-native-sound」依存関係も使用しようとしましたが、同じエラーが発生しました。
import React from 'react';
import { StyleSheet, Text, View, Image ,TouchableOpacity} from 'react-native';
import { Howler, Howl } from 'howler';
import a from '../../assets/audios/a.mp3';
const timePass=function (){
var sound = new Howl({
src: [a]
});
return <View>
<TouchableOpacity style={{}} activeOpacity={0.8} onPress={()=>sound.play()}>
<Text>Sound</Text>
</TouchableOpacity>
</View>
}
const style=StyleSheet.create({ });
export default timePass;```