- (void)applicationDidBecomeActive:(UIApplication *)application {
  // Your code
  
  // We assume that the app is loaded then the main thread become free
  // after this callback is finished.
  dispatch_async(dispatch_get_main_queue(), ^{
    [[StartipTimeMonitor sharedMonitor] appDidFinishLoading];
  });
}