- I am using react-native camera to record video.
- Its play in iOS but not play in android
- Extension is : .mov for iOS and .mp4 for android
<Video source={{uri:videoUri}} type="mp4"/>
<Video source={{uri:videoUri}} type="mp4"/>
Please use below code,
import {Platform} from 'react-native';
<Video source={{uri:videoUri}} type=Platform.OS === 'ios'? "mov" : "mp4" />