2

Working on a project that should share data among 4+ devices offline. Using Google Nearby connection, we are able to establish a connection between devices via P2P-STAR topology. But what we really need is to have all devices receive and send data to all connected devices(M-N Connection).

After doing a research, Google Nearby API doesn't support mesh network so we have to build one on top of that API. But we are not able to find a good example to start with.

Any suggestion that can point us to that would be appreciated.

Laura
  • 33
  • 6

1 Answers1

1

There is Bluetooth mesh, but this is rather for BLE beacons.

There's also Wi-Fi Direct, which is not mesh networking.

Martin Zeitler
  • 49,224
  • 12
  • 97
  • 156
  • Connection should be established and data should be sent and received among all devices OFFLINE. We need to send data immediately after registration one after the other without requesting a connection everytime. So WIFI-Direct is not the best approach in our case. – Laura Feb 04 '20 at 19:48