Jan Cislinsky
Jan Cislinsky
I have exactly the same problem.
Looks like infinite loop. 
How do you initialize LifetimeTracker. In my project I initialize sdk from Obj-c. After initialization from Swift it doesn't crash anymore. With this initialization it crashes in infinite loop ```...
Another try, it was not dependant on language but when initialization is called. In my case i crashes before `window.makeKeyAndVisible()`.
You can try snooze initialization a little bit. If works for me. ``` DispatchQueue.main.asyncAfter(deadline: .now() + 1) { LifetimeTracker.setup(onUpdate: LifetimeTrackerDashboardIntegration(visibility: .visibleWithIssuesDetected, style: .bar).refreshUI) } ```
Weird, then I don't know. You must wait for authors to look at crash. You can fork repository and try to simulate crash in Example project (I tried that without...
I set our CI to use this plugin to push only tags. So I didn't set branch and I thought that it will push only tags. But a very weird...
It's my tip. I wrote test that compares content in cells (extracted from subviews of tableView) with model. ```swift private extension UITableView { var testDescription: String { return subviews .sorted...