Camera - Could not invoke Networking.sendRequest

When taking a 8 minute video with the Camera I get this error:

Could not invoke Networking.sendRequest (see image below)

My code is below:

const options = {
          quality: Camera.Constants.VideoQuality["4:3"],
          mute: true,
          maxDuration: 60 * 8
        };
const { uri } = await this.camera.recordAsync(options);

Any ideas as how to fix this?

Can you reproduce your issue in snack?
I’m not seeing this issue in a simple example: Camera Example - Snack

From your error message it looks like you may just not have space on the device to handle 8 minutes of video

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.