You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Sentry Kotlin Multiplatform (KMP) SDK is currently incompatible with Android Startup due to an initialization order conflict. This issue prevents the proper initialization of the SDK on Android since we rely on SentryContextProvider to fetch the applicationContext.
The current workaround is to set a high enough init order for the context provider:
<providerandroid:name="io.sentry.kotlin.multiplatform.SentryContextProvider"android:authorities="${applicationId}.SentryContextProvider"android:exported="false"android:initOrder="9999" <-- this should be higher than InitializationProvider
tools:node="replace"
>
The text was updated successfully, but these errors were encountered:
Description
The Sentry Kotlin Multiplatform (KMP) SDK is currently incompatible with Android Startup due to an initialization order conflict. This issue prevents the proper initialization of the SDK on Android since we rely on
SentryContextProvider
to fetch theapplicationContext
.The current workaround is to set a high enough init order for the context provider:
The text was updated successfully, but these errors were encountered: