Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove fabric plugin from xcode / mac

I have installed the fabric plugin as a part of twitter application integration. then fabric app is getting crashed every time. so can anyone tell me how can i uninstall FABRIC plugin completely so i can start again the complete procedure. Any help will be appreciated.

like image 351
Wolverine Avatar asked Aug 31 '25 22:08

Wolverine


1 Answers

To remove Fabric from xcode, go to build phases in Target and delete "Run script".
In AppDelegate, remove this line [Fabric with:@[CrashlyticsKit]]; from didFinishLaunch method.
Now remove

#import "Fabric/Fabric.h"
#import "Crashlytics/Crashlytics.h" // from the AppDelegate.m  

Finally, delete "Fabrics" and "Crashlytics" framework from Project Navigator.

To delete Fabrics from Mac, simply go to Applications in Finder window. Find Fabrics and move to trash.

like image 155
Milan Gupta Avatar answered Sep 03 '25 23:09

Milan Gupta