Ion W/ Cloudflare Free Ssl (with Sni) Fails With
I'm running into a bug in Ion that koush (the lead dev) thinks may be related to CloudFlare's use of SNI. The bug was reported here: https://github.com/koush/ion/issues/559 I'm loo
Solution 1:
You can disable the middleware that causes the problem by putting the
following in your Application.onCreate
method.
Ion.getDefault(getContext()).getConscryptMiddleware().enable(false);
The bug is only in Google Play Services conscrypt. Remove that line at a later time once GPS updates.
The downside of disabling conscrypt is that it also disables SPDY support on older platforms and that it is also a newer, more secure, updated SSL stack.
Post a Comment for "Ion W/ Cloudflare Free Ssl (with Sni) Fails With"