We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This line uses Arrays.copyOfRange which is only available on Android 2.3+: https://github.com/codebutler/android-websockets/blob/master/src/com/codebutler/android_websockets/HybiParser.java#L337
Replacing it with this will make this library be compilable on Android under 2.3: http://stackoverflow.com/questions/7970486/porting-arrays-copyofrange-from-java-6-to-java-5
The text was updated successfully, but these errors were encountered:
Merge pull request koush#7 from mike-stewart/master
e683f20
Create an SSL socket for https connections.
No branches or pull requests
This line uses Arrays.copyOfRange which is only available on Android 2.3+:
https://github.com/codebutler/android-websockets/blob/master/src/com/codebutler/android_websockets/HybiParser.java#L337
Replacing it with this will make this library be compilable on Android under 2.3:
http://stackoverflow.com/questions/7970486/porting-arrays-copyofrange-from-java-6-to-java-5
The text was updated successfully, but these errors were encountered: