Crashlytics : stuck on "Verifying Installation..." step Crashlytics : stuck on "Verifying Installation..." step swift swift

Crashlytics : stuck on "Verifying Installation..." step


setDebugMode = YES

set below code before [Fabric with:@[ TwitterKit ]]; if applied for twitter kit. Or you can simply past below code in didFinishLaunchingWithOptions.

// SwiftCrashlytics().debugMode = trueFabric.with([Crashlytics.self()])// Objective-C[[Crashlytics sharedInstance] setDebugMode:YES];[Fabric with:@[[Crashlytics class]]];

Now build and run your app and check fabric UI window, it will move ahead to complete screen.


I resolved the problem.I put my code in applicationDidFinishLaunching(application: UIApplication) instead of func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?)


It seems silly but sometimes you need to make a code change (like a simple NSLog statement) to kick the verification.