0
Flurry在其適用於iOS的basic step中包含以下內容。Flurry的基本步驟是做什麼的?
1. Download the Flurry iOS SDK
2. Add the Flurry lib to your project
3. Incorporate the following two lines of Flurry code:
#import "Flurry.h"
- (void)applicationDidFinishLaunching:(UIApplication *)application
{
[Flurry startSession:@"YOUR_API_KEY"];
//your code
}
我已經在我的應用程序中完成了這一步,並在模擬器上運行應用程序。但由於it takes time for updates to show on the dashboard,我不確定這一步是否足以跟蹤用戶啓動應用程序然後關閉它的最簡單情況。這個基本步驟足以監控應用程序的啓動和關閉嗎?謝謝。