We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Raygun uses OkHttpClient to make it's posts.
Use Case:
Problem: The default SSLContext will fail to handshake and the requests will fail.
Solution: Allow a SSLContext to be supplied to RaygunSettings that will be set on the OKHttpClient:
new OkHttpClient.Builder() .sslSocketFactory(sslContext.getSocketFactory())
This would be needed in both post services https://github.com/MindscapeHQ/raygun4android/blob/master/provider/src/main/java/com/raygun/raygun4android/services/CrashReportingPostService.java#L114 https://github.com/MindscapeHQ/raygun4android/blob/master/provider/src/main/java/com/raygun/raygun4android/services/RUMPostService.java#L69
The text was updated successfully, but these errors were encountered:
Todo: look into not using OKHttp and remove the dependency completely in favour some some URLConnection class.
Sorry, something went wrong.
Let's not do this. But will look into sslContext changes again now.
TheRealAgentK
No branches or pull requests
Raygun uses OkHttpClient to make it's posts.
Use Case:
Problem:
The default SSLContext will fail to handshake and the requests will fail.
Solution:
Allow a SSLContext to be supplied to RaygunSettings that will be set on the OKHttpClient:
This would be needed in both post services
https://github.com/MindscapeHQ/raygun4android/blob/master/provider/src/main/java/com/raygun/raygun4android/services/CrashReportingPostService.java#L114
https://github.com/MindscapeHQ/raygun4android/blob/master/provider/src/main/java/com/raygun/raygun4android/services/RUMPostService.java#L69
The text was updated successfully, but these errors were encountered: