Failed to retrieve settings from https://settings.crashlytics.com/spi/v2/platforms/android/apps/

Ok, I think I solved the problem, but the solution does not seem to be the way it should work (at least I do not think).

  • Go to Firebase Console > Project Settings > Account Linking > Fabric > Select the app and Unlink it
  • Confim in Fabric > App > Firebase - that it is unlinked
  • Go to Firebase > Project > Crashlytics (select the app you want) and you should now get a dialog to link your app again
  • Choose to link as a New Crashlytics (not existing one) and follow the directions
  • After that all should work fine

So basically, from Fabric>Firebase screen - there is no link visible and from Firebase>Account Linking>Fabric screen - there is also no linking visible. So no linking, but your crashes will be visible in Firebase.


This takes me a lot of time than I figured out how to migrate correctly. Actually you have two ways how to do it:

  1. Perform clean migration without keeping crash history from Fabric Crashlytics

    This way is described in Firebase Crashlytics developer guide. You have to here remove com.crashlytics.ApiKey meta-data from app manifest file.

    With this way you must not link Fabric with Firebase otherwise crashes will not shown in Firebase nor Fabric console.

  2. Link Fabric with Firebase and keep the crash history

    This way is probably nowhere documented. Crucial is here to keep com.crashlytics.ApiKey meta-data in your manifest. Then you need to link Fabric Crashlytics with Firebase. You can also enable forwarding Events (formerly Answers) to Firebase Analytics. Both actions are presented in Fabric console, look for Firebase in a side menu.

    All new crash reports show up in both Fabric console and Firebase console. Also this linking arrange a copying all Fabric crash report history to Firebase.

    I think firebase-core artifact is not necessary here, but I added it. I'm also using Fabric Events, so with firebase-core additional app usage events was appeared in Firebase Analytics.


I had the same issue and it took me a lot of time to figure out. I solved my problem by going to FireBase Console > [my project] > Crashlytics. In the dropdown you need to select your app. After that a wizard with three steps will show up. first step of setup

Click whatever option suits you, I chose the first because it's a new app. After that the second step shows up.

second step of setup

Now here comes the important part. Make sure you click the link to go to the documentation! A new browser tab will open up. If you already finished the project setup like me, you can close it. After that you will automatically go to the 3rd option. Most of the time I never clicked the link because I had already completed the installation. And once I did I never noticed that the 3rd option was available because I'm at the other tab. As a result I never got to see the 3rd option.

third step of setup At this point you should open your app and it will automatically connect to Firebase without any problem.

Edit: After I tried to add some other build variants I noticed that I was still getting some errors while retrieving the settings. It took me a lot of time to figure out how to solve it. The best thing I could come up with is:

  1. switch to build variant
  2. perform an assemble[YOUR_BUILD_VARIANT] on the gradle tab.
  3. build > rebuild project
  4. delete old app from device if present.
  5. install app and open it. Sometimes this also didn't work and I tried the same steps again one or two times and suddenly it started working...

It also helped me to enable additional debug logging for fabric and crashlytics.

adb shell setprop log.tag.Fabric DEBUG
adb shell setprop log.tag.CrashlyticsCore DEBUG