We've got an mp4 video which has no audio track in it playing as a muted background video e.g.
<Video
style={ tailwind.style('w-full h-full absolute z-10') }
source={ intro }
resizeMode="cover"
isLooping={ true }
isMuted={ true }
shouldPlay={ true }
/>
However when a user opens the app, sees this page and they have background music, e.g. spotify, youtube, etc running it pauses their music. How can we set this so it completely ignores audio from within this video preventing any conflicts?
We're using a managed expo workflow v47, expo-av v13 and react-native v0.70
Please advise
P.s. We have other audio in the app that the user explicitly clicks that we do want audio interruption on.