Reputation: 673
I have created self signed certificate and installed in a server.To enable https in android is it required ca root cerificate.? Android won't run in self signed certificates?
Upvotes: 0
Views: 85
Reputation: 17803
The documentation at http://developer.android.com/training/articles/security-ssl.html#SelfSigned clearly say that HttpURLConnection
won't work with a self signed certificate.
They also imply that you can create your own TrustManager
as a workaround.
Upvotes: 1