- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Creation of SENTConfig here, see previous step
SENTConfig *conf = [[SENTConfig alloc] initWithAppId:@"APPID"
launchOptions:launchOptions];
    [[SENTSDK sharedInstance] initWithConfig:conf success:^{
        // SDK Start
    [[SENTSDK sharedInstance] start:^(SENTSDKStatus *status) {
            if ([status startStatus] == SENTStartStatusStarted) {
                // SDK started properly.
            } else if ([status startStatus] == SENTStartStatusPending) {
                // Something prevented the SDK to start properly (check the location permission). Once fixed, the SDK will start automatically.
            } else {
            // SDK did not start.
            }
        }];
    } failure:^(SENTInitIssue issue) {