Framework
Compose Multiplatform
Platform
Android
Installed
None
Version
0.23.0
Steps to Reproduce
Setup Sentry on Android with using Sentry KMP SDK
Sentry.initWithPlatformOptions(platformOptionsConfiguration())
actual fun platformOptionsConfiguration():
PlatformOptionsConfiguration = { options ->
options.isEnableAppStartProfiling = true
options.isEnablePerformanceV2 = true
options.isAnrEnabled = true
options.anrTimeoutIntervalMillis = 5_000
options.isEnableActivityLifecycleTracingAutoFinish = true
options.isAttachThreads = true
options.isAttachStacktrace = true
}
NavHost(
navController = navController.apply {
navControllerConfig()
},
)
navControllerConfig = {
withSentryObservableEffect()
},
Expected Result
Breadcrumbs regarding lifecycle & navigation should not be repeated and logged only once
Actual Result
Some breadcrumbs regarding App Lifecycle and Navigation get repeated
Framework
Compose Multiplatform
Platform
Android
Installed
None
Version
0.23.0
Steps to Reproduce
Setup Sentry on Android with using Sentry KMP SDK
Expected Result
Breadcrumbs regarding lifecycle & navigation should not be repeated and logged only once
Actual Result
Some breadcrumbs regarding App Lifecycle and Navigation get repeated