Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 ?

like image 611
BSK-Team Avatar asked Jun 10 '15 13:06

BSK-Team


6 Answers

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.

like image 144
Hardik Darji Avatar answered Nov 16 '22 15:11

Hardik Darji


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

like image 32
BSK-Team Avatar answered Nov 16 '22 13:11

BSK-Team


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

like image 4
lucianoenrico Avatar answered Nov 16 '22 15:11

lucianoenrico


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

like image 2
Rivera Avatar answered Nov 16 '22 13:11

Rivera


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.

like image 2
Niklas Lindén Avatar answered Nov 16 '22 13:11

Niklas Lindén


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.

like image 1
Eva Zhu Avatar answered Nov 16 '22 13:11

Eva Zhu