1

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

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

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

1 回答 1

0

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

请将您的代码更改为:

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

Flurry.startSession("2XKDMH8M7PQM75B7SKZR")


    let locationManager: CLLocationManager = CLLocationManager();
    locationManager.startUpdatingLocation();
于 2016-07-27T18:09:10.213 回答