Play mosquito sound in React Native (iOS & Android)
import Sound from “react-native-sound”;
constructor(props) {
super(props);
Sound.setCategory(“Playback”);
mSound = new Sound(“yoursound.mp3”, Sound.MAIN_BUNDLE);
}
_playSound() {
mSound.play(success => {
if (success) {
console.log("Success");
} else {
console.log("Failure");
mSound.reset();
}
});
}