Skip to main content

🖇 Attachments

Gleap allows you to attach files to feedback items. This enables you to include application specific information, which Gleap doesn't collect by default.

Add attachments​

Gleap offers the following two methods to attach files to your feedback items. The attachments won't be removed after sending feedback as many customers requested them to be incremental. If you need to start over fresh after each report, simply use the removeAllAttachments method.

Add attachment by path​

Gleap.addAttachment(withPath: ".../filepath/file.txt")

Add attachment with data and name​

Gleap.addAttachment(with: data, andName: "file.txt")
info

The file size is limited to 1MB for each file. In addition we limited the maximum files count to 6 files. These limits make sure that the user doesn't have to transfer too much data while sending feedback.

Remove attachments​

Use the following method to remove all attachments.

Gleap.removeAllAttachments()