Expo AV

await Audio.setAudioModeAsync({ playsInSilentModeIOS: true });
  
const playbackObject = new Audio.Sound();
// OR
const { sound: playbackObject } = await Audio.Sound.createAsync(
  { uri: 'http://foo/bar.mp3' },
  { shouldPlay: true }
);
...
Celtyn Naidoo