Невозможно установить сокет-соединение на устройстве Android с помощью ionic-4
Я могу установить соединение через браузер и устройства ios, но, как ни странно, не могу на устройствах Android.
app.module.ts
const config: SocketIoConfig = { url: 'http://www.example.com:3434',
options: {} };
@NgModule({
declarations: [AppComponent],
entryComponents: [],
imports: [
BrowserModule,
IonicModule.forRoot(),
AppRoutingModule,
SocketIoModule.forRoot(config),
IonicStorageModule.forRoot(),
CommonModule,
ComponentModule,
],
providers: [
StatusBar,
SplashScreen,
{ provide: RouteReuseStrategy, useClass:
IonicRouteStrategy },
Network
],
bootstrap: [AppComponent]
})
socket-connection.service.ts
import { Socket } from 'ngx-socket-io';
import { Observable } from 'rxjs/Observable';
export class SocketConnectionService {
constructor(public socket : Socket) { }
request(){
this.socket.emit('request',data)
}
}