Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fabric won't let me link my Firebase app

I have an app on my Firebase project that I'm trying to link to Fabric.

When I go to Fabric -> Firebase -> Set up integration and select the app, it says "Already linked".

But if I go to Firebase console -> Project settings -> Integrations -> Fabric, I don't see it linked there. I do see some other apps linked, but not the one that I'm trying to link right now.

Any idea why this could be happening? If I had an old Firebase <-> Fabric link, I should at least see it here and be able to remove it, but there's nothing there. So why does Fabric think that my app is already linked, when it's clearly not?

like image 895
Guy Avatar asked Apr 24 '18 11:04

Guy


People also ask

How do I unlink my firebase?

It is not possible to unlink the “firebase” provider.

What is Firebase settings Crashlytics com?

Firebase Crashlytics is a lightweight, realtime crash reporter that helps you track, prioritize, and fix stability issues that erode your app quality. Crashlytics saves you troubleshooting time by intelligently grouping crashes and highlighting the circumstances that lead up to them.


1 Answers

Paul from Fabric here. My recommendation would be to unlink your app and try again.

You can unlink by using the following URL: https://fabric.io/remove_firebase_crashlytics?clientId=CLIENT_ID&projectId=PROJECT_ID

  • CLIENT_ID is your Firebase Client ID. This begins with "android:" or "ios:" and is followed by either your package name (Android) or bundle ID (iOS) example of CLIENT_ID
  • PROJECT_ID is your app’s containing Firebase project ID, which can be found by going to Project Settings. This is also present in the URL of your Firebase console, i.e. https://console.firebase.google.com/project/<projectId> example of PROJECT_ID

For example, with these values:

  • clientId: ios:com.remove.crashlytics.1
  • projectId: test-removing-crashlytics

The link becomes: https://fabric.io/remove_firebase_crashlytics?clientId=ios:com.remove.crashlytics.1&projectId=test-removing-crashlytics

like image 168
buser Avatar answered Oct 19 '22 00:10

buser