DEV Community

Abhijeet Dash
Abhijeet Dash

Posted on

Can anyone answer this question

I want to share an apk file over the socket.. I've already tried sending the "Hello World" message from one android device to another, and it works perfectly.

      var socket = await FlutterP2p.openHostPort(port)
      setState(() {
        _socket = socket;
      });
      FlutterP2p.acceptPort(port);

I have no idea of how to share an application…

Top comments (0)