Hello everyone and thanks a lot for your answers.
Ionic version:
[ ] 1.x
[x] 2.x
Current behavior:
Update project to to RC2.
I’m using chrome plugin to connect via tcpServer to a sensor. Changing typings.json to @types in node_modules everything is ok, but running the app in Android i got this error.
Expected behavior: The app should run normally
Steps to reproduce:
npm install @types/chrome --save-dev --save-exact
in my project
Related code:
`chrome.sockets.tcpServer.onAccept.addListener ((info) => {
console.log ("[TCP] Connection accepted: “, info.clientSocketId);
// Unpause socket to start receiving data
chrome.sockets.tcp.setPaused (info.clientSocketId, false, () => console.log (”[TCP] Can now receive data from client " + info.clientSocketId));
// Save client socket id
this._clientSocketId = info.clientSocketId;