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

7.2k Views Asked by At

I want to use Crashlytics on my application. I followed every step but I'm stuck on "Verifying Installation..." step.

enter image description here

What is the problem ?

9

There are 9 best solutions below

6
On BEST ANSWER

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

0
On

It could be that the app was already added to your team's account and that all you needed was an access to it. Here's a thread about the same issue: https://twittercommunity.com/t/hmmm-seems-like-your-kit-isnt-activating/73601/9.

2
On

setDebugMode = YES

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

// Swift
Crashlytics().debugMode = true
Fabric.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.

0
On

Another possible solution is to run the app with connectivity on the device/simulator, as indicated in here.

0
On

I have occurred the same problem. I run the app on iPhone. After I deleted the app and pressed CMD + R on iPhone, the problem is solved.

2
On

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

0
On

If you're adding a new app you need to be an Admin of your organization but you may just be a User.

0
On

If you have already installed twitter/Digits kit using fabric before, then you will find Fabric.with([Digits.self, Twitter.self]) in your "AppDelegate.swift" file . Replace it with the following code Fabric.with([Digits.self, Twitter.self, Crashlytics.self]) if you want to use all three. Now press Cmd + R to finish the installation.

0
On

Just had the same issue on Mac.

In my case the guide shown in the Fabric application was completely missing a crucial step: there was nothing about adding the API key!

So make sure your API key is added to info.plist, otherwise the application gets stuck at verifying installation.

Simply login to Fabric and follow this manual installation guide to make sure everything gets done correctly. Once you complete the last step you can go straight to the dashboard.