2,461 questions
-1
votes
1
answer
83
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 ...
1
vote
1
answer
191
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
276
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-...
2
votes
1
answer
328
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 ...
2
votes
1
answer
474
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
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
82
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
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&...
3
votes
0
answers
297
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
31
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 ...
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
0
answers
50
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 ...
2
votes
0
answers
281
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-...
0
votes
0
answers
75
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
vote
1
answer
112
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
1
answer
81
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;
...
1
vote
1
answer
752
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 { ...
1
vote
0
answers
35
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 ...
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…) , ...
-1
votes
1
answer
307
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
1
answer
92
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
0
answers
66
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
0
answers
282
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 ...
1
vote
1
answer
114
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 ...
0
votes
1
answer
257
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 ...