New Firebase Crashlytics SDK not communicating with android project - firebase

I applied all sdk, implementation, classpath and plugin of new Firebase crashlytics but not connecting or communicating to firebase crashlytics.
It always show loader while i open crashlytics page in firebase console.

Related

Expo React Native: There is no FCM API key configured for this project

I'm trying to setup push notifications for Android in my managed React Native Expo project. I have carefully followed the official guidelines Push-notifications overview and Using FCM for Push Notifications for Android.
I have created a new firebase project for my Android application. Then in the Cloud Messaging tab of the firebase project, I copied the Server Key (FCM API Key). I also downloaded the generated google-services.json into my Expo project.
Then I started a new EAS build. But when I run, from terminal, expo push:android:show, I'm getting the title error:
There is no FCM API key configured for this project
It turns out that the command expo push:android:show is deprecated.
Instead I should use eas credentials , select the android platform and follow the instructions to display all my keys and credentials, including the FCM API key

Not getting Firebase Crash Reports when Upgrade to the Firebase Crashlytics SDK

Firebase sent the following message :-
"Note: The Fabric SDK is now deprecated and will continue reporting your app's crashes until November 15, 2020. On this date, the Fabric SDK and old versions of the Firebase Crashlytics SDK will stop sending crashes for your app. To continue getting crash reports in the Firebase console, make sure you upgrade to the Firebase Crashlytics SDK versions 17.0.0+ for Android,4.0.0+ for iOS, and 6.15.0+ for Unity."
I followed the steps given in the bellow link :-
https://github.com/a-imai/XamarinCrashlyticsUpgradeSample
Uninstall existing crashlytics packages
Install new packages
Reinstall google-service.json
added <string name="com.google.firebase.crashlytics.mapping_file_id">1.0</string> to strings.xml
delete <meta-data android:name="firebase_crashlytics_collection_enabled" android:value="false" /> from AndroidManifest.xml
Remove Fabric reference from MainActivity.cs i.e delete Fabric.Fabric.With(this, new Crashlytics.Crashlytics());
In MainActivity.cs, under OnCreate(), I added small code to crash the app
When I run the app, App is crashing but The Problem I am getting is not able to get crash reported under Firebase Crashlytics. But not every this this is happening, yesterday i got crash reported in firebase crashlytics. But today app is crashing but not getting crash reports in firebase console

Firebase: Could not find the Android Application module. Only Android Application Modules can be connected to Firebase online projects

When I try to connect with firebase service I am getting the error
Firebase: Could not find the Android Application module. Only Android Application Modules can be connected to Firebase online projects. Create a new Android Application Module or create/import a different Android Studio project.

Can't init firebase on iOS in Unity without having an Android project

I've tried initializing Firebase on Unity for iOS app only, and I'm getting this error while running:
Unable to load options for default app ([/Users/yaniv/Downloads/21312111222/New Unity Project333/Assets/StreamingAssets/google-services-desktop.json, /Users/yaniv/Downloads/21312111222/New Unity Project333/Assets/StreamingAssets/google-services.json] are missing or malformed)
I know that for cross-platform apps, I usually download the google-services.json from the Firebase project settings, but in this case, I have no Android apps under this project (it's an iOS app only).
How can I prevent Firebase from request it?

Crashlytics from Fabric to Firebase

My ios application uses crashlytics and fabric. I wanted to migrate Crashlytics in firebase. During configuration I say that I have not crashlytics in my App. An get instruction how add crashlytics to my app. Now when I’m trying to return at the first step I’m getting an error “Action failed”. How can I link my Fabric account and firebase?
This help to migrate fabric to Firebase for ios Application
Step 1. Remove the Fabric initialization code.
We’ll first need to remove Fabric from our Xcode project settings.
Start by opening your app in Xcode.
Remove the Crashlytics Run Script Build Phase from your Xcode project’s Build Phases.
In your AppDelegate.swift, remove your Fabric initialization code by removing the import Fabric and import Crashlytics statements, as well as any Fabric.with() statements.
step 2:
To set up Firebase Crashlytics, follow along in the Firebase Documentation on Getting started with Firebase Crashlytics.
If your Podfile already contains pods for Fabric and Crashlytics, replace them with these version-specific pods:
pod 'Fabric', '~> 1.7.7'
pod 'Crashlytics', '~> 3.10.2'
Once you finish setting up Firebase Crashlytics, you can test your implementation by forcing a test crash in your app.
ios fabric to firebase migration
Go through above link it will helpful to you.

Resources