Crashlytics says “Received null settings, skipping report submission”

前端 未结 4 1250
清歌不尽
清歌不尽 2021-02-12 22:09

I am trying to switch from Firebase Crash reporting to Firebase Crashlytics.

I have followed the guide here: https://firebase.google.com/docs/crashlytics/upgrade-from-cr

相关标签:
4条回答
  • 2021-02-12 22:47

    In my case this same error occurred because i already had forced the crash on the device as required by setup tutorial, for a different flavor of the application.

    My App has 2 flavors, so in order to successfully link flavor number 2 i had to force crash on a different simulator.

    Note: The 2 flavors need to have different packages at least.

    0 讨论(0)
  • 2021-02-12 22:56

    Same happened to me. I had another flavor of the app installed, so I deleted all flavors currently installed and it worked after simulating the crash again.

    0 讨论(0)
  • 2021-02-12 23:08

    When upgrading from Fabric Crashlytics to Firebase Crashlytics I found that I needed to make sure that AndroidManifest.xml contained this attribute from Fabric. After having correctly linked the App in Fabric with Firebase. Which you can find at https://www.fabric.io/settings/organizations,

    <meta-data
        android:name="io.fabric.ApiKey"
        android:value="..." />
    

    (Replacing ... with your key) This needs to be within the <application> block. Once I included this the settings were detected and crashes appeared in the Firebase console, email alerts.

    0 讨论(0)
  • 2021-02-12 23:14

    You need to link your project to Fabric. Ignore it if you already did it. Else follow these steps

    It will navigate to Fabric and follow the instructions (create an account or sign in if you already have an account). After successfully logged in to the Fabric, Next you have to link your project to Fabric for that you can use the Fabric plugin.

    After installing the plugin you can open it by clicking either of the below options shown below.

    And follow instructions to create the Fabric project.After that from the firebase console -> Crashlytics -> link your firebase project to Fabric project.

    That's all...

    0 讨论(0)
提交回复
热议问题