We have noticed some behavior in our data.
In some % we don't have ga_session_id as param on events.
For example we have custom event missions_started and we see that in 20% of the cases we are missing ga_session_id as param in this event.
App is using Firebase SDK 17.5.0.
What can be the reason for this problem?
Related
I want to receive app events installed from Facebook Events Manager like number of installs, purchases etc.
What I am doing so far is:
var events = new Application("app_id", FacebookUtil.createApiContext(token)).getEvents()
.requestAllFields()
.execute();
It is expected to return events list as in the image, but instead it returns an empty list.
Am I missing something?
Thank you for any help.
I want to ask something regarding my final year project. I am developing a medication reminder and storing these data on the image below on async storage. So basically I want to run a notification in the background and notify the user based on the given time on the image below. So I am figuring out what libraries I should use to achieve this. Are there any libraries that I can use in order to accomplish this? Asking for suggestions.
I am setting up firebase analytics for my React Native app. Is it possible to attach a console.log that fires each time firebase.analytics().logEvent() is called? I want to be able to see the event name and params in the console.log. I know I can check in the DebugView in Firebase, but just having it logged to the console seems a bit faster. Appreciate any input.
Per the comment, it would be more economical to create a global method that sends the data to Analytics and console together.
You can read about Global Helpers HERE.
module.exports = function(payload) {
firebase.analytics().logEvent()
console.log(payload);
}
_.Log(payload);
This allows you to also introduce filters and edge-case scenarios within your app as needed including debug mode and alerts from within your app.
I was using this library for touch id / face id authentication. Is there any way I can get the event when the user starts placing finger on the touch id sensor? The library seems to be good but I didn't find much that solves my problem. All I can do now is to authenticate the user and get the result ( either error or success ) on the fly.
Thank You
I'm using react native for an sdk. I need to be able to send an event from JavaScript to the native layer when a particular action has occurred.
The docs mention that it's possible to send events to JS, but I need to be able to send events in the other direction.
Any ideas?