diff --git a/Editor/HotFix.meta b/Editor/HotFix.meta
new file mode 100644
index 0000000..6927425
--- /dev/null
+++ b/Editor/HotFix.meta
@@ -0,0 +1,3 @@
+fileFormatVersion: 2
+guid: 21655bd888424261bed6cea66e8f76eb
+timeCreated: 1709697549
\ No newline at end of file
diff --git a/Editor/HotFix/FirebaseHotfixDependencies.xml b/Editor/HotFix/FirebaseHotfixDependencies.xml
new file mode 100644
index 0000000..7a714dc
--- /dev/null
+++ b/Editor/HotFix/FirebaseHotfixDependencies.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Editor/HotFix/FirebaseHotfixDependencies.xml.meta b/Editor/HotFix/FirebaseHotfixDependencies.xml.meta
new file mode 100644
index 0000000..01ef355
--- /dev/null
+++ b/Editor/HotFix/FirebaseHotfixDependencies.xml.meta
@@ -0,0 +1,3 @@
+fileFormatVersion: 2
+guid: 23787d57e81d4fa18d986c16746ab31e
+timeCreated: 1709641668
\ No newline at end of file
diff --git a/Runtime/GuruCore/Runtime/Analytics/Analytics.cs b/Runtime/GuruCore/Runtime/Analytics/Analytics.cs
index 0f43050..a52c014 100644
--- a/Runtime/GuruCore/Runtime/Analytics/Analytics.cs
+++ b/Runtime/GuruCore/Runtime/Analytics/Analytics.cs
@@ -222,15 +222,16 @@ namespace Guru
///
///
///
- public static void Track(string key, Dictionary data = null)
+ ///
+ public static void Track(string key, Dictionary data = null, EventSetting setting = null)
{
if (null != data)
{
- LogEvent(key, data);
+ LogEvent(key, data, setting);
}
else
{
- LogEvent(key);
+ LogEvent(key, setting);
}
}