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
Once the SentryOkHttpEventListener pr is merged, we could autoinstrument the OkHttp clients with it, other than the SentryOkHttpInterceptor.
The only thing to take care of is that OkHttp allows only one EventListener at a time, so we shouldn't add ours if the user already set one.
We can do this by either changing the default OkHttpClient.Builder constructor and inject our listener or by using a wrapper around it
The text was updated successfully, but these errors were encountered:
Description
Once the SentryOkHttpEventListener pr is merged, we could autoinstrument the OkHttp clients with it, other than the
SentryOkHttpInterceptor
.The only thing to take care of is that OkHttp allows only one
EventListener
at a time, so we shouldn't add ours if the user already set one.We can do this by either changing the default
OkHttpClient.Builder
constructor and inject our listener or by using a wrapper around itThe text was updated successfully, but these errors were encountered: