我知道Flurry報告存在延遲,但是,我們在第二天沒有看到Flurry報告的結果。Flurry 4.2.2 SDK沒有在iOS中發送事件會話數據
[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
但有會話數據的亂舞沒有通信時,應用程序被暫停或關閉。當我重新啓動應用程序,亂舞嘗試發送不幸導致會話數據:
FlurrySession: Add crashed former session
按照指示,我們開始在亂舞會議:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions method of your AppDelegate
據亂舞的網站,我們的目標不是任何活動。
我們使用亂舞4.2.2 SDK
1+我有使用UIBackgroundModes我的應用程序,並使用4.2它不張貼到亂舞的任何事件。 2 SDK。謝謝! – mevdev