Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I remove crashlytics from my iOS app?

I need to remove crashlytics from my iOS app, as am using STTwitter API to get user's Twitter credentials from the phone. This used to work fine on my device, but now I can't get the credentials for some reason, after some digging I found that I can still get the credentials on the simulator and since crashlytics doesn't work with the simulator am sensing the problem is with it, specially that there's this badge on Fabric mac app which indicates that crashlytics needs to be updated but even after I update it still I can not get the credentials and this "update badge" is back on after a while.

like image 418
user2037296 Avatar asked May 18 '15 23:05

user2037296


People also ask

How do I delete apps from my iOS device?

iOS Delete Apps 1 Touch and hold the app. 2 Tap Delete App. 3 Tap Delete. See More....

What happens when you delete an app on iOS 14?

With iOS 14, instead of deleting apps, you can remove apps from your Home Screen, so that they appear only in your App Library. Learn more about using the App Library. If you delete an app, it doesn’t cancel in-app subscriptions that you might have.

What apps can I remove from my iPhone?

In addition to removing third-party apps, you can remove the following built-in Apple apps that came with your iPhone: Books. Calculator. Calendar. Compass. Contacts (Contact information remains available through Phone, Messages, Mail, FaceTime, and other apps. To remove a contact, you must restore Contacts.) FaceTime.


1 Answers

I can't say that removing crashlytics will solve your problem, but here's how you would do it:

1) Look in your AppDelegate file. Look in the didFinishLaunchingWithOptions method. Remove the line Crashlytics.startWithAPIKey("abc123")

2) Goto your build phases in Xcode for your target. Find the shell script that looks like ./Pods/CrashlyticsFramework/Crashlytics.framework/run somelongstringhere and remove it

3) Find the crashlytics framework in your navigation panel of Xcode right click and either remove the reference or delete it all together. If you installed via cocoa pods then remove it from your podfile.

4) Delete the crashlytics app from your system if you so desire by looking in your applications folder.

like image 75
Frankie Avatar answered Oct 06 '22 23:10

Frankie