BugShaker

Undocumented

  • Enable or disable shake detection

    Declaration

    Swift

    public static var enabled = true
  • Set bug report email recipient(s), custom subject line and body.

    • Parameters:
      • recipients: List of email addresses to which the report will be sent.
      • subject: Custom subject line to use for the report email.
      • body: Custom email body (plain text).

    Declaration

    Swift

    public class func configure(to recipients: [String]!, subject: String?, body: String?)

    Parameters

    recipients

    List of email addresses to which the report will be sent.

    subject

    Custom subject line to use for the report email.

    body

    Custom email body (plain text).

  • Set bug report email recipient(s) & custom subject line. Convenience method for configure(to:, subject:, body:) for use when not specifying custom body text.

    • Parameters:
      • recipients: List of email addresses to which the report will be sent.
      • subject: Custom subject line to use for the report email.

    Declaration

    Swift

    public class func configure(to recipients: [String]!, subject: String?)

    Parameters

    recipients

    List of email addresses to which the report will be sent.

    subject

    Custom subject line to use for the report email.