I save an mp3 file named 'sound1.mp3' in assets folder. In App.js, I call:
let sound1 = new Sound(requires('./assets/sound1.mp3'), Sound.MAIN_BUNDLE, (error) => {});
sound1.play((ok) => {});
It worked. But when I disconnect my android phone from my computer and restart the app, it can not play mp3 file. Please help me.