Silent Invocation

In order to integrate a custom UI when creating a bug report, or if you want to automatically send a bug report at a particular point in time without interupting users flow, you can do so using the following APIs:

1
2
3
4
5
6
7
AppeliumFeedback.invokeSilently(title: "Silent bug report") { (success, error) in
    if success {
        print("Great!")
    } else {
        print("Failed: \(error!)")
    }
}