Current behavior
Every time when I put the source on my code, from firebase, doesn't play any video. But, when I put some other link like this one: 'https://www.w3schools.com/tags/movie.mp4', it's work fine. I can load and show images normally from firebase, but I have some issues with videos. Does someone know how to help me?
### Platform
Android and react-native-video (https://github.com/react-native-community/react-native-video)
Code
<View style={pageGrey}>
<Video
source={{ uri: 'https://www.w3schools.com/tags/movie.mp4' }}
style={styles.backgroundVideo}
rate={1} volume={1} muted={true}
repeat={true}
resizeMode='cover' key="video1"
/>
</View>