My code snippet:
showImagePicker = () => {
const options = {
storageOptions: {
skipBackup: true
},
mediaType: 'video',
videoQuality: 'high',
durationLimit: 10,
allowsEditing: true,
noData: false
};
ImagePicker.launchCamera(options, (response) => {
console.warn('Object === ' + Object.keys(response))
// Upload video to DB
...
});
}
Issue:
Response doesn't contain anything but path and uri.
Even noData:false didn't help.
Testing OS is Android.