Flurry の報告が遅れていることは承知していますが、Flurry の報告の翌日には結果が表示されません。
[Flurry setDebugLogEnabled:YES];
[Flurry setLogLevel:FlurryLogLevelDebug];
[Flurry startSession:_appSettings.flurryAppId];
[Flurry setSessionReportsOnCloseEnabled:YES];
[Flurry setSessionReportsOnPauseEnabled:YES];
[Flurry setEventLoggingEnabled:YES];
UIDevice *device = [UIDevice currentDevice];
[Flurry logEvent:@"SESSION_START"
withParameters:[NSDictionary dictionaryWithObjectsAndKeys:[device systemVersion], @"OS", nil]
timed:YES];
私たちのログには、アプリ内で発生した個々の Flurry ログ呼び出しが表示されます。情報が Flurry に送信されたことを示唆するものは何も表示されません。
setSessionReportsOnPauseEnabled:
との両方setSessionReportsOnCloseEnabled:
が に設定されてYES
いますが、アプリが一時停止または閉じられている場合、Flurry へのセッション データの通信はありません。アプリを再起動すると、Flurry はセッション データを送信しようとしますが、残念ながら次の結果になります。
FlurrySession: Add crashed former session
指示に従って、Flurry セッションを次の場所で開始しました。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions method of your AppDelegate
Flurry の Web サイトによると、イベントを追跡していません。
Flurry 4.2.2 SDK を使用しています