事件,会话和其他功能正常运行,但是当涉及崩溃报告时,它很糟糕。没有生成崩溃报告。我使用了以下代码: -
Flurry.startSession("2XKDMH8M7PQM75B7SKZR")
Flurry.setCrashReportingEnabled(true)
Flurry.setSessionReportsOnCloseEnabled(true);
Flurry.setSessionReportsOnPauseEnabled(true);
Flurry.logPageView()
let locationManager: CLLocationManager = CLLocationManager();
locationManager.startUpdatingLocation();
答案 0 :(得分:0)
通常,您应该在调用startSession之前放置配置详细信息。对于崩溃报告,这是必需的。
请将您的代码更改为:
Flurry.setCrashReportingEnabled(true);
Flurry.setSessionReportsOnCloseEnabled(true);
Flurry.setSessionReportsOnPauseEnabled(true);
Flurry.logPageView();
Flurry.startSession("2XKDMH8M7PQM75B7SKZR")
let locationManager: CLLocationManager = CLLocationManager();
locationManager.startUpdatingLocation();