Skip to content

FreakDev/PhoneGap-Android-HTML5-WebSocket

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Android HTML5 WebSocket

A Java library that make the WebSocket object available for project that uses a WebView (like PhoneGap project's)

The iOS version of the plugin was already existant (http://github.com/remy/PhoneGap-Plugin-WebSocket) and works well for me, but the Adnroid version was missing. here it is.

Usage

  • copy the Java source into the source folder of your project.
  • copy websocket.js in your assets/www folder
  • copy / paste these two line inside the onCreate of your activity
   WebSocketFactory wsFactory = new WebSocketFactory(appView);
   appView.addJavascriptInterface(wsFactory, "WebSocketFactory");
  • in your javascript, create a new WebSocket, and overload its method 'onmessage', 'onopen', 'onerror', 'onclick';

About

a little java implementation of missing WebSocket form Android webview

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published