How to detect all the Devices connected in a WiFi network from Android App

60,187

Solution 1

Maybe the Network Discovery github project could help you. It lists all users connected to WiFi with IP and MAC addresses and gathers even some information like open ports, device name, ping, etc. Hope it helps

Solution 2

Check requestPeers of WifiP2pManager

As per documents it seeks PeerListListener which returns WifiP2pDeviceList carrying list of WifiP2pDevice which carries deviceAddress, deviceName, primaryDeviceType, secondaryDeviceType, status and other attributes.

Share:
60,187
Yogi Yang 007
Author by

Yogi Yang 007

I am a software developer and I learn a lot from other peoples work and by observing. I work on part-time basis as a consultant to Software developing companies. I have mastery in UI designing, I have got good hold on VB6, Delphi, VB.NET, PHP, RealBASIC, PureBasic, C#, KBasic & Delphi. I also know Python and PowerBasic. Enough to get work done. ;)

Updated on April 10, 2020

Comments

  • Yogi Yang 007
    Yogi Yang 007 about 4 years

    I am developing an app in which I need to scans WiFi network and display the list of all connected devices.

    Allow a use to tap on a device and the app should show all the hardware info of that particular device. Here by hardware I mean - RAM, Storage Media, Storage Capacity, Device Name, Device IP address, etc.

    Now this device can be anything like xbox, a laptop with Linux/Windows, mobile phone like iPhone or any Andorid based smart phone or even a printer.

    How can I scans WiFi network and query/detect all the devices attached to it?

    What are the protocols that I need to use to get list of hardware in a particular device irrespective of the OS running on it?