Mobile App Connect to Devices on Same Wi-Fi Network

0
From a mobile app, how can I connect to other devices on same router in offline mode (without internet). I have a set of devices, all connected to 1 Wi-Fi network and I want to communicate between these devices.  - How to identify one specific device and send a message to it? - How to broadcast messages to all devices on the network? - How to listen/receive messages being sent from other devices?
asked
1 answers
2

As far as I know Mendix does not offer this out of the box, but maybe you can wrap one of the existing technologies below.

Both Android and iOS offer some native functionality for their respective platform:
Android: https://developer.android.com/guide/topics/connectivity/wifip2p
iOS: https://developer.apple.com/documentation/multipeerconnectivity

If you look for a crossplatform solution this one is available.

iOS+Android(Commercial): http://p2pkit.io/

answered