gpt4 book ai didi

ios - Flurry 中未收到崩溃报告(Swift、iOS)

转载 作者:行者123 更新时间:2023-11-28 08:32:27 25 4
gpt4 key购买 nike

事件、 session 和其他功能运行良好,但在崩溃报告方面却很糟糕。没有生成崩溃报告。我使用了以下代码:-

Flurry.startSession("2XKDMH8M7PQM75B7SKZR")
Flurry.setCrashReportingEnabled(true)
Flurry.setSessionReportsOnCloseEnabled(true);
Flurry.setSessionReportsOnPauseEnabled(true);
Flurry.logPageView()

let locationManager: CLLocationManager = CLLocationManager();
locationManager.startUpdatingLocation();

最佳答案

通常,您应该在调用 startSession 之前放置配置详细信息。对于崩溃报告,这是必需的。

请将您的代码更改为:

    Flurry.setCrashReportingEnabled(true);
Flurry.setSessionReportsOnCloseEnabled(true);
Flurry.setSessionReportsOnPauseEnabled(true);
Flurry.logPageView();

Flurry.startSession("2XKDMH8M7PQM75B7SKZR")


let locationManager: CLLocationManager = CLLocationManager();
locationManager.startUpdatingLocation();

关于ios - Flurry 中未收到崩溃报告(Swift、iOS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38611509/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com