I'm trying to make a multiplayer game for Android via WiFi direct. I followed the instructions on http://developer.android.com/training/connect-devices-wirelessly/wifi-direct.html in order to connect to devices.
The ActionListener i use with discoverPeers()
returns successfully, but then i never receive the WIFI_P2P_PEERS_CHANGED_ACTION
intent upon which i would call requestPeers()
. Strangely when i go into WiFi direct system settings on one device, the other is able to successfully detect it through my app. Do i need to make my device discoverable in my app or something? I haven't found anything to indicate that in the Android developer resources regarding WiFi P2P. There is WiFi direct for service discovery, but that's something else entirely, isn't it?
Add
WIFI_P2P_PEERS_CANGED_ACTION
into your broadcast receiver intent-filter.