I'm using expo and testing on an Android device. When I try to load the following video I'm getting this error
import TransparentVideo from "@status-im/react-native-transparent-video";
import myVideo from "./assets/myVideo.webm";
export const FireVideo = ({ setShowFire }) => {
return (
<TransparentVideo source={myVideo} style={styles.video} />
);
};
const styles = StyleSheet.create({
video: {
position: "absolute",
top: 0,
left: 0,
right: 0,
bottom: 0,
},
});
I'm using expo and testing on an Android device. When I try to load the following video I'm getting this error