Add the Firebase iOS Sdk (4.3.0 or Higher) or Unity Plugin (6.15.0 or Higher), Then Build, Run, and Crash Your App

Add the Firebase iOS SDK (4.3.0 or higher) or Unity Plugin (6.15.0 or higher), then build, run, and crash your app

Add the dSYM to the debug file the Debug mode.

dSYM (Debug Symbolification) is needed to reverse symbolication of the
code in crash.

Sample Image

Message states that you need to crash your app. Add the crash code on an event not on an app launch:

fatalError()

Note: Crashes doesn't get reported:

  1. If Xcode is connected to the app.
  2. It only get reported in the next app launch.

Steps:

  1. Run the app using Xcode.
  2. Disconnect it from Xcode by clicking stop.
  3. Re-launch the App manually.
  4. Crash your app.
  5. Re-launch it so the crash get reported.

Info. gathered from api docs.

Add the Firebase iOS SDK (4.3.0 or higher)

I installed app to iPhone and simulator both and disconnect from debug mode and launched 5-6 times.
it solved problem

CocoaPods could not find compatible versions for pod Firebase/Core” | cloud_firestore, Flutter

My setup: VS Code, Flutter

If you don't have Podfile.lock file and pod update doesn't help, try this:

  1. Go to ios/Pods/Local Podspecs directory in your project
  2. Check every json file to find highest required ios version. Mine was "ios": "10.0" in some of them
  3. Go back to ios/ directory
  4. Open Podfile file
  5. Uncomment # platform :ios, '9.0' and replace 9.0 with version from 2. step, for example 10.0.
    • # platform :ios, '9.0' > platform :ios, '10.0'
  6. Run pod install and the error should be gone

Firebase console show this while choose Crashlytics with iOS We'll be listening for your app to communicate with our servers

In my case, I solved this problem by doing these steps:

  1. Make sure you follows the all steps that mentioned in Firebase Documentation Crashlytics.
  2. Use fatalError() for crash your app.
  3. Uninstall App from simulator or Real Device
  4. Run the app on Simulator or Real device then stop running.
  5. And then Open the App that Install on Simulator or Real device.
  6. Open Firebase Console project And Refresh it.

Crashlytics in iOS won't proceed past Build Your Project in Fabric app

Moving from Comment to Answer.

Mike from Fabric here. If you back up through the Mac app, then click on the arrow in the top-left, click on "+ New App", that will walk you through re-adding everything.



Related Topics



Leave a reply



Submit