Crashlytics not sending crash Reports to my Fabric dash board?

crashlytics, ios, iphone, xcode

Solution

Finally today I found solution, to get report with dubug mode make change like in below image.

and follow these instructions ,like I have also post here.

Problem

In My app previously used fabric for twitter integration purpose. Now i want crashlytics .so i followed as fabric guided me added framework to my project ``` #import "AppDelegate.h" #import <Fabric/Fabric.h> #import <Crashlytics/Crashlytics.h> - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ [Fabric with:@[TwitterKit, CrashlyticsKit]]; } ``` later i added run script in Build Phase also checked with Force crash but i didn't get any crash report to my Fabric dash board ...Please Guide me Where i did mistake....

Original source

Related problems