-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
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
SSL method in Android 2.2 #33
Comments
So ... I tried on my 2.2 device and on a 2.2 emulator and I don't have any issue with it. Is it on a specific device ? |
On 29.05.2013 9:52, Foxykeep wrote:
i have exceptionLogCat ... 3 morebut if this line is run fine. device google sdk |
In NetworkConnectionImpl
SSLContext sc = SSLContext.getInstance("SSL");
but in android 2.2 (API 8) - i have exception SSLMethodUnknown
more valid
SSLContext sc = SSLContext.getInstance("TLS");
The text was updated successfully, but these errors were encountered: