Firebase crashlytics error loading event trends - crashlytics

After migrating my app from fabric's crashlytics to firebase's crashlytics, Firebase crashlytics dashboard only show crash-free statistics (that not match with fabric data) and event trends is error. try reload the page several time but the result is same. like this Image below
any idea what should I do to make my crashlytics data appear in firebase dashboard?

Related

Firebase Analytics: is it using IDFA on iOS?

Given the upcoming iOS 14 permission prompt for apps that use the IDFA identifier,
I am wondering if Firebase Analytics and Firebase Auth do need to access the IDFA in order to operate.
In such case, are we then required to state that the app is using IDFA when we publish it on the AppStore?
The question have been asked in a git issue on the firebase repo and basically the answer is yes if the AdSupport framework is linked to your app. The conversation is actually very interesting and links to another similar discussion started some years ago.
So at the moment if you use Firebase Analytics and your app links against AdSupport, you should indeed check the "my app uses IDFA" checkbox in the App Store.
By default, no*.
You can choose to use IDFA by calling the ATT (App Tracking Transparency) framework. *If you don't call ATT, the IDFA returned by AdSupport will be 00000000-0000-0000-0000-000000000000.
However, starting in 2021, you can include the AdSupport framework and Analytics won't collect the IDFA unless you present the AppTrackingTransparency dialogue. source
here is the quote from Firebase Documentation about Firebase Analytics and IDFA for iOS 14 or later
Firebase SDKs do not access IDFA, though some have integrations with
Google Analytics that may involve IDFA access.
so by default Firebase Analytics will not require IDFA. IDFA is required if you need to get more accurate data related to ads and marketing (attribution data & conversion tracking) from your linked Google (Firebase) Analytics.
Analytics event logging, event reporting, and conversion measurement
are unaffected, but attribution is impacted if IDFA is not accessible
more documentation you can read related to Appleā€™s iOS 14 policy updates
https://support.google.com/analytics/answer/10285841
https://firebase.google.com/docs/ios/app-store-data-collection

App won't run without google play services, which are not supported by your device Error while using firebase analytics for react native mobile app

I am trying to integrate firebase analytics on react native app, I have completed all the prerequisites and got a successful build running on Honeywell android Device, but when I open the app it gives above error. There are many such duplicate question but nothing works for me as I can't have play store as the target devices are Handheld android devices and not mobile devices. How to integrate firebase analytics without having to install google play service.
Thanks for Answer #JakeSteam
But I could get firebase integration working without google play service error.
Issue Details:
I was using react native firebase 5.x.x, which works fine but will give a pop up message mentioned in question if your device doesn't have google play service.
Workaround:
Upgrade react native firebase to version 6.x.x, the community has redeveloped this repo and I am not having issues with it now.
NOTE:
Without google play service on your device you can only use few firebase services like analytics, crashlytics etc.
As a Firebaser said:
Firebase as a platform requires Google Play Services, even though some Firebase products may be able to work without it.
If you cannot use Google Play Services, you may want to look into Google Analytics, which does not require it:
Note: Google Analytics can be used and will work on devices that do not have Google Play Services. In this case you still download and use the Google Play Services SDK and Google Analytics will automatically fall back to local dispatching.

Can we integrate firebase analytics in old project which has google cloud messaging? so i want firebase-analytics and google cloud messaging also

I have tried to add fire base-analytics in old project which has google cloud messaging which i don't want to change, i am getting error for google cloud message for imports.
Google Cloud Messaging has been deprecated as of 10 April 2018.
You can import the old project into Firebase Console and generate a config file. Analytics is a core service and track most of the app data automatically with few lines of code required for initialization. Take a look at this doc.
Please note that the Analytics data will start populating on Firebase dashboard only from the point onwards you integrate the SDK in the app. Also you can easily transition to Firebase Cloud Messaging with that approach.

Firebase Cloud Messaging with serverside API push for obj-c

currently I working to implement Firebase Push Notification in my apps.
I found this:
[background] Using Firebase Console my apps can get the notification from system tray with remote notification
[foreground] Using Firebase Console my apps can get the notification from log, but i can make it into notification center with local notification
[foreground] Using Our Dashboard which managed by PHP serverside, I can get notification from log, but i can make it into notification center with local notification
The problem is, how can i get the notification (log is fine) if my apps in background with Our Dashboard which managed by PHP serverside?
I found that there is different between json I got from Firebase Console and our managed serverside dashboard, is that a problem that my apps cant handle? and how i can handle it? can I get the sample of the code to solve this problem?
This is the different between json i got from firebase console and our managed serverside dashboard
firebase console
our managed serverside dashboard
What you want to do is possible by using the normal FCM api.
Please review the differences between Display-Message and Data-Message here:
https://firebase.google.com/docs/cloud-messaging/concept-options#notifications_and_data_messages
and see all the parameters in the reference page:
https://firebase.google.com/docs/cloud-messaging/http-server-ref

Where to view Google Cloud messaging for Android reports and request details

Where to view Google Cloud messaging for Android reports and request details
Some of message i'm receiving from GCM and some not, so i want to see the reports or api access list in google console. Where can i see this details
Source code i used
http://www.androidhive.info/2012/10/android-push-notifications-using-google-cloud-messaging-gcm-php-and-mysql/
As you noticed, Stats on the Google API Console are not enabled for GCM. The GCM Stats are only available on the Developer Console (which costs $25 to register to).
Viewing Statistics
To view statistics and any error messages for your GCM applications:
1. Go to the Developer Console.
2. Login with your developer account.
You will see a page that has a list of all of your apps.
3. Click on the "statistics" link next to the app for which you want to view GCM
stats. Now you are on the statistics page.
4. Go to the drop-down menu and select the GCM metric you want to view.
Note: Stats on the Google API Console are not enabled for GCM. You
must use the Developer Console.
(Source)