NTP-38110 | Pulse version bump (#15024)

This commit is contained in:
Kishan Kumar
2025-02-19 15:32:06 +05:30
committed by GitHub
parent 3e78e094f5
commit c4b7fcae67
2 changed files with 12 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ navi-alfred = "2.1.0"
navi-customerDocumentCollector = "1.0.1"
navi-elex = "1.11.1"
navi-guarddog = "3.14.0"
navi-pulse = "1.14.0"
navi-pulse = "1.15.0"
navi-traceflow = "1.0.0"
navi-uitron = "3.4.0"
navigation = "2.8.5"

View File

@@ -10,6 +10,8 @@ package com.navi.analytics.utils
import com.google.firebase.crashlytics.FirebaseCrashlytics
import com.google.firebase.crashlytics.internal.common.CommonUtils
import com.google.gson.Gson
import com.navi.pulse.PulseSDKConfig
import com.navi.pulse.network.AppData
import com.navi.pulse.network.PulseRequest
object NaviAnalyticsHelper {
@@ -17,7 +19,15 @@ object NaviAnalyticsHelper {
private var whiteListedAppsFlyerEvent: HashSet<String>? = null
fun getClickStreamData(): String {
return gson.toJson(PulseRequest())
return gson.toJson(
PulseRequest(
app =
AppData(
version = PulseSDKConfig.getAppVersion(),
versionName = PulseSDKConfig.getAppVersionName(),
)
)
)
}
fun checkRootedDeviceUsingFirebase(): Boolean {