Set Attachment Types

You can set the types of attachments your users can add to reports using this API.

The available attachment types are:

  • Initial Screenshot

  • Extra Screenshot

  • Gallery Image

  • Screen Recording

Method:

BugReporting.enabledAttachmentTypes = [.screenShot, .extraScreenShot]

Attachment Types Enums:

//Inital Screenshot
.screenShot
//Extra Screenshot
.extraScreenShot
//Gallery Image
.galleryImage
//Screen Recording
.screenRecording

Screen Recording Encoder: For the Screen Recording, you can define a custom configuration using the API below:

Luciq.setVideoEncoderConfig(VideoEncoderConfig config);

Last updated