Add Extra Attachment

It's possible to manually add an extra attachment to the report by passing a file URL to this method.

let url = URL(fileURLWithPath: "filePath")
Luciq.addFileAttachmentWithURL(filePath, fileName)
//OR
Luciq.addFileAttachment(with: data, andName: "attachment_1.log")
//Name field is optional

Last updated