My app contains a WebView
that load an https url
. I've noticed that on Android version > 4.3
all works well, but on lower version i get this error:
external/chromium/net/http/http_stream_factory_impl_job.cc:865: [0804/151708:WARNING:http_stream_factory_impl_job.cc(865)] Falling back to SSLv3 because host is TLS intolerant: :443
and "page not found"
message appears. Https page is a TLS v 1.2
and i've read that older version of Android does not support this kind of certificate.
So, if i use something like SSLv3
, i'm guarantee that everything will works well on most of Android
versions?