Does not work with SSL, only blank white screen
See original GitHub issueI am using version 0.6.1. (latest), it is not working with SSL for me, I only see a blank white screen anytime I am trying to launch the HA (or any website) with SSL. I tried on different devices with the same result. First I tried with self signed SSL than I read maybe the Android webview has issues with Self signed SSL, so I bought an SSL certificate, but the result is the same.
Maybe the solution can be found on this link: https://stackoverflow.com/questions/7416096/android-webview-not-loading-an-https-url
and only these lines have to be inserted:
@Override
public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
handler.proceed(); // Ignore SSL certificate errors
}
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
Blank / white screen when running (some) Standard Reports ...
Blank / white screen when running (some) Standard Reports, caused by SSL certificate prompts.
Read more >WebView is not able to open some https URL. Showing blank ...
I have tested my URL, it's working fine with all the browser except Internet Explorer. Already handling SSL Error; Override ...
Read more >How to Fix the WordPress White Screen of Death (Step by Step)
A comprehensive troubleshooting guide that will show you to fix the white screen of death in WordPress front-end, back-end, and even on long ......
Read more >SecureAuth Authenticate Mobile App Blank Screen or SSL ...
Cause: The Authenticate App does not allow for sites that are not fully trusted to be used, which results in a blank screen...
Read more >How to Fix WordPress Site Blank White Screen Error?
If this is the case, it clearly indicates that something is wrong with your WordPress hosting service. This could be a temporary problem ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Oh it’s definitely https/Certificate errors we are dealing with here. It’s just the example code to do so is such a broad stroke, apparently Google Play’s code analyzer will just reject it for the gaping security hole. It wouldn’t hold up the short term but there will probably have to be a toggle and some other logic in there to avoid the beatdown (eg, you will have to opt in).
Thanks to @quadportnick it works…