Registers an event in Firebase and AppsFlyer
trackingLogEvent = async () => {
try {
const modules = await Eitri.modules();
const logEvent = modules?.tracking?.logEvent;
if (!logEvent) return;
await logEvent({eventName: "eitri_event", data: { page: "/Playground"}})
} catch (error) {
console.log("appsFlyerLogEvent.error: ", error);
}
}
Object describing the event.
Name of the event.
Object describing the event's data.
Collection of functions responsible for tracking an user's activity in an Eitri-App using various services.