├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── plugin.xml ├── sockets.tcp.js ├── src ├── android │ └── ChromeSocketsTcp.java └── ios │ ├── ChromeSocketsTcp.h │ └── ChromeSocketsTcp.m └── tests ├── plugin.xml └── tests.js /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp/HEAD/plugin.xml -------------------------------------------------------------------------------- /sockets.tcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp/HEAD/sockets.tcp.js -------------------------------------------------------------------------------- /src/android/ChromeSocketsTcp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp/HEAD/src/android/ChromeSocketsTcp.java -------------------------------------------------------------------------------- /src/ios/ChromeSocketsTcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp/HEAD/src/ios/ChromeSocketsTcp.h -------------------------------------------------------------------------------- /src/ios/ChromeSocketsTcp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp/HEAD/src/ios/ChromeSocketsTcp.m -------------------------------------------------------------------------------- /tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp/HEAD/tests/plugin.xml -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenLav/cordova-plugin-chrome-apps-sockets-tcp/HEAD/tests/tests.js --------------------------------------------------------------------------------