1await Audio.setAudioModeAsync({ playsInSilentModeIOS: true });
2
3const playbackObject = new Audio.Sound();
4// OR
5const { sound: playbackObject } = await Audio.Sound.createAsync(
6 { uri: 'http://foo/bar.mp3' },
7 { shouldPlay: true }
8);
9...
10