iOS Crash Reporter Service / Alternative to MacDevCrashReports.com

前端 未结 9 2116
Happy的楠姐
Happy的楠姐 2021-02-09 17:45

I\'m looking for a iOS crash reporter web service. I know MacDevCrashReports but they currently do not accept new sign ups.

I know there is a open source crash reporter

9条回答
  •  借酒劲吻你
    2021-02-09 18:43

    For tracking crashes, I really like Appsee for iOS (although also great for Android apps). It gives detailed crash reports, and also session recordings that let you visually monitor all crashes within your app.

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
        Appsee.start() 
        return true
    }
    

提交回复
热议问题