0

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.

Ivan Burzakovskyi
  • 693
  • 1
  • 8
  • 25

0 Answers0