2,461 questions
-1
votes
1
answer
88
views
The analytics_storage value in consent mode is recorded as null
I've installed the Firebase SDK in my iOS app and am using Google Analytics to measure data. The data is exported to BigQuery.
The app incorporates consent mode for consent management. I was suddenly ...
0
votes
1
answer
97
views
After upgrading Firebase SDK I get the error: There are multiple DataStores active for the same file: datastore/aqs/sessionConfigsDataStore.data
I have a runtime environment switcher where we delete and reinitialize the default Firebase app to point to the correct Firebase app based on the environment. This allows us to have separate analytics ...
1
vote
1
answer
202
views
How can I get raw parameter values for a Firebase Analytics event (last 30 days) without using BigQuery?
I log a custom event from my Flutter app whenever a doctor expands the auto-interpretations. The event contains multiple identifying parameters (doctor id/name, organization id/name, test id, ...
0
votes
1
answer
100
views
@react-native-firebase/analytics setup problem after upgrade No Firebase App '[DEFAULT]' has been created - call firebase.initializeApp()
Error: No Firebase App '[DEFAULT]' has been created - call firebase.initializeApp()
"@react-native-firebase/analytics": "^21.11.0",
"@react-native-firebase/app": "^...
1
vote
1
answer
286
views
Flutter Android error: was compiled with an incompatible version of Kotlin. The binary version of its metadata is 2.1.0, expected version is 1.8.0
I’m working on a Flutter app and trying to run it on Android using:
Kotlin version: 2.2.0
Gradle version: 8.14.3
JVM target: 17
But I keep getting this error during the build:
e: .../jetified-play-...
0
votes
0
answers
37
views
Firebase shows many “active users” from (other) with zero events – what’s causing this?
I'm using Firebase Analytics for an iOS app, and recently I noticed something very strange in the analytics dashboard.
Starting from [insert date], there is a sudden spike in active users listed under ...
2
votes
1
answer
356
views
How to track screen views in Jetpack Compose using Google Analytics?
In the previous XML-based Android development, it was relatively straightforward to track screen views in Google Analytics by using separate activities for each screen.
Now that I’m using Jetpack ...
0
votes
0
answers
67
views
How to isolate firebase analytics dependencies in a kotlin-only module?
I want to make some modules of my Android project Kotlin-only so that I can reuse them in future KMP modules, and I'd like to know how to do that for some Firebase Analytics dependencies.
I have the ...
2
votes
1
answer
502
views
Failed to initiate on-device conversion measurement
I wanted to integrate Google on-device conversion measurements within a iOS app, but got the following warning -
Failed to initiate on-device conversionmeasurement. ...
0
votes
0
answers
74
views
Cannot import Package that has FirebaseAnalytics as dependency
I have a main project with some local packages. These packages are imported in the main project as features. I want to have an Analytics package that is a simple wrapper around Firebase Analytics that ...
0
votes
0
answers
65
views
Missing some events in BigQuery from Firebase Analytics integration
For some reason, certain events that are normally visible in Firebase Analytics cannot be found in our BigQuery database. Specifically, this concerns the screen_view and user_engagement events. These ...
0
votes
0
answers
66
views
How to log Firebase Analytics custom event details in logcat
I would like to debug Firebase Analytics events that our app is sending on my phone. Since the DebugView is not working, I’m wondering if there’s a way to use the logcat tool locally to get enough ...
0
votes
0
answers
84
views
Firebase Analytics auto track routes only shows FlutterViewController
I want to auto-track routes inside my app for better analytics.
Inside my GetMaterialApp.router:
navigatorObservers: [
FirebaseAnalyticsObserver(
analytics: ...
0
votes
1
answer
243
views
How are Android apps supposed to gather Analytics consent status for users in the EEA, any library to do it or do I need to implement custom UI?
So, if I press the "Set up consent mode" button, it just redirects to the Set up consent mode for apps page, which only shows that we can:
Add the following to the manifest:
<meta-data ...
0
votes
1
answer
23
views
Are language and country will be collected automatically for custom events as well or should I add them explicitly as params?
For example in Android we can create the following custom event when a user opens details screen of some item:
firebaseAnalytics.logEvent("item_details_screen") {
param("item_id&...
1
vote
0
answers
52
views
Inconsistent in_app_purchase Logging Firebase Analytics
I have a react native application using the Firebase SDK Analytics. I tried comparing the in_app_purchase event with the Order Management tool in the Play Store console. I noticed some inconsistencies,...
3
votes
0
answers
312
views
Flutter: how to track and attribute mobile app installs
I have a small Flutter app and plan to promote it through both posts and ads on Google, Meta, and TikTok. The customer journey follows one of these paths:
Ad/Post or organic traffic → Website → Click ...
0
votes
0
answers
102
views
Firebase Unity - Failed to read Firebase options from the app's resources
For some context to the project's structure, it's a Unity game that's within a Flutter project. This was achieved using the flutter-unity-widget. So far I have been setting up Firebase Analytics as a ...
0
votes
0
answers
33
views
Firebase Analytics losting event collect in Android App: 20% of sessions has only session_start events
I have a native Android App developed with Kotlin. It uses Firebase Analytics to send custom events to GA4 (360 account), but 20% of sessions has only the standard session_start event. In other ...
0
votes
0
answers
42
views
Firebase Console: Unable to Access Explorations Data
I use the following code to report key events and custom definitions.
Bundle bundle = new Bundle();
bundle.putString("CustomLog", "TEST" + System.currentTimeMillis());
...
1
vote
0
answers
58
views
How can I map Google Analytics consent signals using the Google User Messaging Platform SDK?
In my Android app I ask EU users for consent to show personalized ads through Google's User Messaging Platform SDK.
What I want is to use that same platform to configure the Google Firebase Analytics ...
0
votes
1
answer
72
views
Firebase Analytics Debug View does not show event
I've log event, I can see other events but not the one I have just added. I've already enabled debug:
adb shell setprop debug.firebase.analytics.app [your_app_package_name]
0
votes
0
answers
55
views
How it it possible to have engagement_time_msec of 1 millisecond?
This is regarding using Firebase with an iOS/Android app.
I have lot of users who have a strange sequence of events.
first_open and session_start at exactly the same timestamp.
Then user_engagement 1 ...
0
votes
0
answers
53
views
Firebase Analytics Custom Events Not Logging Data
I am facing an issue with Firebase Analytics where custom events initially log data as expected, but after a few days, the data stops showing up in the Firebase Analytics dashboard. Here's a detailed ...
2
votes
0
answers
291
views
How to configure Google Tag Manager in React Native iOS
I want to implement GTM with firebase analytics, firebase is already configured in my app with these versions:
"@react-native-firebase/analytics": "19.3.0",
"@react-native-...
1
vote
1
answer
1k
views
How do I set up firebase analytics on my react native expo project?
I followed this documentation which seems pretty straightforward, however I keep getting error while setting analytics user id: [Error: No Firebase App '[DEFAULT]' has been created - call firebase....
0
votes
0
answers
83
views
Integrating Firebase analytics into unity leads to iOS build failure
I integrated firebase analytics into my unity game and made an android and iOS build, the android build works fine but the iOS build fails and gives me errors. This is the build log where the errors ...
-1
votes
1
answer
174
views
Flutter - GoogleTagManager warning: No default container found. Container needs to be added to a container folder and added to the target
I am trying to setup the GTM in my Flutter App. Despite adding the json file in container folder inside the IOS Folder and putting down correct reference I am still getting this issue
GoogleTagManager ...
1
vote
1
answer
122
views
Active users, Event not being shown in realtime overview in firebase console
I am trying to incorporate firebase analytics into my game. I have installed the firebase analytics sdk in my unity project and done all the setup tasks. I want to know whenever the app is opened by ...
1
vote
0
answers
38
views
Flutter FirebaseAnalytics returns error while ios build
I am trying to use Firebase Analytics in my flutter project. I added it in pubspec.yaml file (firebase_analytics: ^11.3.6).
After I have tried to restart my app this error message shows up in console:
...
1
vote
1
answer
86
views
Firebase Analytics logEvent run asynchronously
I am implementing Firebase analytics in my web app. So I use
export function LogAnalyticsEvent(
eventName: string,
eventParams?: {
page_title?: string;
page_location?: string;
...
0
votes
0
answers
41
views
How can I use "source" dimension to analyze a specific event in Google (Firebase) Analytics?
I'm using Google (Firebase) Analytics in an iOS app and track the event like follows.
Analytics.logEvent("event-name", parameters: [
AnalyticsParameterSource: "source-value"
])
...
1
vote
1
answer
757
views
Why do Firebase return "Analytics: Firebase Analytics is not supported in this environment" when connecting a NextJS app with Firebase Analytics?
I am currently building an web app using Firebase and Nextjs. I am having trouble adding analytics to the nextjs app in the firebase config file.
This is my Firebase config.ts file:
import { ...
0
votes
0
answers
43
views
How can we dynamically configure the Firebase keys through FirebaseOptions instead of putting the google-services.json file into the project?
I want to configure Firebase dynamically so that anyone who uses my project can use the configurations in their own google-services.json files. Here's what I've done: I put the google-services.json ...
1
vote
0
answers
38
views
Firebase cause Auto-Restart Crash Loop
Please help with this issue
Issue Summary
We identified a critical crash pattern in Firebase Crashlytics reports: a small subset of users experienced an unusually high repeated crash rate. All crashes ...
1
vote
0
answers
27
views
How to check canceled events in firebase web
How to determine or track if an event was sent successfully and is not in a "canceled" state?
Events are not being delivered, and I don’t know how to implement retries.
To enable retries, I ...
0
votes
0
answers
35
views
Firebase Functions - Missing events logging after third request
Currently we have a Firebase function responsible to listen for ‘xyz_event’.
When this event is sent from both Android/IOS, after the third submission we are still able to see the events (4th, 5th…) , ...
0
votes
1
answer
152
views
Firebase Analytics parameters
I have a flutter (ios & android) project. I'm trying to learn how to use Firebase Analytics. Everything is working fine in DebugView and I can see all the data I send.
But I don't understand how ...
-1
votes
1
answer
309
views
How to record Firebase Analytics differently in debug vs prod builds
I'm using Firebase Analytics in an iOS app. I've created two "environments" - one for production and one for staging. The idea of staging is to separate app data in development builds from ...
0
votes
0
answers
89
views
JavaScript: Firebase Analytics don't log my events in console
I'm newbie to Firebase Analytics Web implementation.
But here's my code:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
...
0
votes
1
answer
93
views
Android, Firebase.analytics is not resolved
Looking at https://firebase.google.com/docs/analytics/get-started?platform=android we can set up Firebase Analytics.
dependencies {
// Import the BoM for the Firebase platform
implementation(...
0
votes
1
answer
83
views
How can I track user engagement with files that are not hosted on a server using Google Analytics 4?
Is there a workaround to disable protocol checking in Google Analytics 4 for tracking user engagement in file-based applications like webOS apps, since GA4 no longer provides an option to disable it?
...
0
votes
0
answers
70
views
App Crashing while trying to use Firebase analytics
Im developing a C++ Desktop application and trying to use Firebase Analytics using the Firebase C++ SDK from https://firebase.google.com/download/cpp
I tried initializing the analytics module but the ...
1
vote
1
answer
143
views
Angularfire: how to Initialize the config dynamically?
app.config.ts file:
import { provideFirebaseApp, initializeApp } from '@angular/fire/app';
import { getAnalytics, provideAnalytics } from '@angular/fire/analytics';
export const appConfig: ...
1
vote
0
answers
287
views
iOS app shown in Firebase `Release Monitoring` but not in `Analytics Dashboard`
About six months ago, I upgraded the Firebase version used in the iOS app I'm working on from 10.3.0 to 10.21.0 and created a new app release. Since that app release, I am no longer able to view ...
0
votes
1
answer
94
views
In Firebase Analytics Dashboard showing Landing Page as not set
Hello Team,
I am using @react-native-firebase/analytics for capturing analytics in react native android and iOS apps , But on the analytics dashboard I can not see Landing Page analytics. I can see (...
1
vote
1
answer
121
views
React Native Firebase Analytics consent flag
We have a React Native app in which we'd like to track user behaviour (screens visited, certain events). We don't use data for any advertising / the app does not include any ads, etc. It's purely for ...
-1
votes
1
answer
425
views
in_app_purchase event stopped being reported on iOS [closed]
I noticed that we suddenly stopped receiving the in_app_purchase event for iOS devices since July 18th.
We continue seeing the event for Android device but for iOS we are not getting nothing in that ...
0
votes
1
answer
260
views
Events from Firebase Analytics not showing up in Big Query after a specific date
I have linked Firebase with BigQuery, and I was receiving the 'app_open' event from Firebase in BigQuery until a certain date. After that, it stopped. How can I fix this issue?
I wanted to know how ...
0
votes
1
answer
167
views
How to properly initialize Firebase Analytics in a React Native Expo app using @firebase?
I'm trying to integrate Firebase Analytics into my React Native Expo app using the official @firebase library (I already use other services successfully). However, I'm encountering the following ...