How to get WiFi MAC address of Android device ?
-
wrote on 10 Feb 2018, 04:25 last edited by Pradeep P N 2 Oct 2018, 15:00
Hi all,
I want to get the MAC address from my android device can some one suggest me here.
Bellow is my sample codeQList<QNetworkInterface> interfaceList = QNetworkInterface::allInterfaces();
interfaceList.erase(std::remove_if(interfaceList.begin(), interfaceList.end(), [](const QNetworkInterface &iface) { return (iface.flags().testFlag(QNetworkInterface::IsLoopBack) || !iface.isValid()); }), interfaceList.end()); qWarning() << " List Count :: " << interfaceList.count() << endl; if (!interfaceList.isEmpty()) { const QString str = interfaceList.constFirst().hardwareAddress().remove(QLatin1Char(':')); qWarning() << " STR :: " << str << endl; return QByteArray::fromHex(str.toLatin1()).toStdString(); }
but the result what i get is
W libMAcAddressTest.so: ..\MAcAddressTest\widget.cpp:25 (std::string Widget::getMacAddress() const): List Count :: 1
W libMAcAddressTest.so: ..\MAcAddressTest\widget.cpp:30 (std::string Widget::getMacAddress() const): STR :: ""i also have permission enabled in my AndroidManifest.xml but nothing helped me here
Thank You in advance.
-
wrote on 10 Feb 2018, 07:02 last edited by
QString MainWindow::getMacAddress()
{
foreach(QNetworkInterface netInterface, QNetworkInterface::allInterfaces())
{
if (!(netInterface.flags() & QNetworkInterface::IsLoopBack))
return netInterface.hardwareAddress();
}
return QString();
} -
QString MainWindow::getMacAddress()
{
foreach(QNetworkInterface netInterface, QNetworkInterface::allInterfaces())
{
if (!(netInterface.flags() & QNetworkInterface::IsLoopBack))
return netInterface.hardwareAddress();
}
return QString();
}wrote on 10 Feb 2018, 14:59 last edited by@Vinod-Kuntoji did you try this code in Android ?
My Question is clear I need to get MAC address of the Android device in which my code runs
-
wrote on 12 Feb 2018, 02:10 last edited by
This should print available network interface names and their hardware/MAC addresses.
for(auto interface: QNetworkInterface::allInterfaces()) qDebug() << interface.name() << interface.hardwareAddress();
For WLAN you may do something like this:
for(auto interface: QNetworkInterface::allInterfaces()) { if(interface.name() == QLatin1String("wlan0")) { // do something with 'interface.hardwareAddress()' break; } }
Note that second code block assumes that device don't have multiple WLAN interfaces.
-
This should print available network interface names and their hardware/MAC addresses.
for(auto interface: QNetworkInterface::allInterfaces()) qDebug() << interface.name() << interface.hardwareAddress();
For WLAN you may do something like this:
for(auto interface: QNetworkInterface::allInterfaces()) { if(interface.name() == QLatin1String("wlan0")) { // do something with 'interface.hardwareAddress()' break; } }
Note that second code block assumes that device don't have multiple WLAN interfaces.
wrote on 12 Feb 2018, 04:11 last edited by@casdevel Thank you,
but this doesn't provide me the WiFi MAC address of the Android device right ? -
wrote on 12 Feb 2018, 06:25 last edited by
In my case it does. I tested this code on my Android tablet.
-
In my case it does. I tested this code on my Android tablet.
wrote on 12 Feb 2018, 08:19 last edited byHi @casdevel
Can you please tell me your Android version and which device are you using ?
I use Galaxy S6 with Android 7.0
the output isW libMAcAddressTest.so: ..\MAcAddressTest\widget.cpp:45 (void Widget::getMacAddress() const): "lo" ""
W libMAcAddressTest.so: ..\MAcAddressTest\widget.cpp:45 (void Widget::getMacAddress() const): "wlan0" "" -
wrote on 12 Feb 2018, 10:08 last edited by
Tablet is ASUS Fonepad 7 (FE170CG) and Android version is 4.4.2.
From log that you posted I see that network interfaces are recognized but hardware addresses are empty strings.
Here is log from my device so you can see what is missing:
D/libk012-server.so( 4097): (null):0 ((null)): "wlan0" "78:24:AF:65:B4:09"
D/libk012-server.so( 4097): (null):0 ((null)): "lo" "00:00:00:00:00:00"I also played with user permissions to see if I can reproduce that empty string issue, but without success. Only permission needed for this to work is 'android.permission.INTERNET'.
Here is my development environment details if you are interested:
Qt Creator 5.10.0
Android SDK 26.1.1
Android NDK 16.1.4479499
OpenJDK 8Android Studio is not installed, and development is done on Kubuntu 16.04.3 LTS.
-
Tablet is ASUS Fonepad 7 (FE170CG) and Android version is 4.4.2.
From log that you posted I see that network interfaces are recognized but hardware addresses are empty strings.
Here is log from my device so you can see what is missing:
D/libk012-server.so( 4097): (null):0 ((null)): "wlan0" "78:24:AF:65:B4:09"
D/libk012-server.so( 4097): (null):0 ((null)): "lo" "00:00:00:00:00:00"I also played with user permissions to see if I can reproduce that empty string issue, but without success. Only permission needed for this to work is 'android.permission.INTERNET'.
Here is my development environment details if you are interested:
Qt Creator 5.10.0
Android SDK 26.1.1
Android NDK 16.1.4479499
OpenJDK 8Android Studio is not installed, and development is done on Kubuntu 16.04.3 LTS.
wrote on 12 Feb 2018, 14:21 last edited byApparently, this behaviour changed when Android got a revised permission system for version 6. There are somewhat conflicting information in the net about this. Some claim that permissions in manifest are not enough, but you need to ask the user for the permission, some claim ways to get the MAC from IpV6 address... At least the problem is not related to Qt. Startt googling...
-
wrote on 13 Feb 2018, 03:07 last edited by
@mvuori those changes shouldn't affect this particular problem, according to official docs: https://developer.android.com/guide/topics/permissions/requesting.html#normal-dangerous.
If permissions are in play here dialog box should pop-up, so I guess something else is responsible for this issue.
Also I think that, at this point, Qt shouldn't be ruled out as a source of the problem. -
@mvuori those changes shouldn't affect this particular problem, according to official docs: https://developer.android.com/guide/topics/permissions/requesting.html#normal-dangerous.
If permissions are in play here dialog box should pop-up, so I guess something else is responsible for this issue.
Also I think that, at this point, Qt shouldn't be ruled out as a source of the problem.wrote on 20 Feb 2018, 08:01 last edited by@casdevel
Even with the additional permission in manifest file i couldn't get any results.
Is it possible for you to try with Android 6.0 or latest ?
As i know the Android Update has removed its Access to BT and WiFi MAC Address. -
wrote on 20 Feb 2018, 13:06 last edited by
@Pradeep-P-N said in How to get WiFi MAC address of Android device ?:
Is it possible for you to try with Android 6.0 or latest ?
Unfortunately no, this is the only Android device that I have and latest supported Android version for this device is 5.0.
-
wrote on 20 Feb 2018, 13:52 last edited by
@Pradeep-P-N it looks like the culprit is Android itself :-) as programmatic access to hardware MAC address was removed since version 6. You may want to see if this approach can help you.
-
@Pradeep-P-N it looks like the culprit is Android itself :-) as programmatic access to hardware MAC address was removed since version 6. You may want to see if this approach can help you.
wrote on 22 Feb 2018, 03:52 last edited by@Pablo-J.-Rogina
Thank you. I will check with the link :) -
@Pradeep-P-N it looks like the culprit is Android itself :-) as programmatic access to hardware MAC address was removed since version 6. You may want to see if this approach can help you.
wrote on 18 Jan 2019, 10:34 last edited by@Pablo-J.-Rogina I'm facing same problem, then is there any other technique to achieve this?
-
@Pablo-J.-Rogina I'm facing same problem, then is there any other technique to achieve this?
wrote on 18 Jan 2019, 13:48 last edited by@sharath said in How to get WiFi MAC address of Android device ?:
I'm facing same problem,
Have you tried the approach I suggested? If so, what's the outcome>?
-
Hi all,
I want to get the MAC address from my android device can some one suggest me here.
Bellow is my sample codeQList<QNetworkInterface> interfaceList = QNetworkInterface::allInterfaces();
interfaceList.erase(std::remove_if(interfaceList.begin(), interfaceList.end(), [](const QNetworkInterface &iface) { return (iface.flags().testFlag(QNetworkInterface::IsLoopBack) || !iface.isValid()); }), interfaceList.end()); qWarning() << " List Count :: " << interfaceList.count() << endl; if (!interfaceList.isEmpty()) { const QString str = interfaceList.constFirst().hardwareAddress().remove(QLatin1Char(':')); qWarning() << " STR :: " << str << endl; return QByteArray::fromHex(str.toLatin1()).toStdString(); }
but the result what i get is
W libMAcAddressTest.so: ..\MAcAddressTest\widget.cpp:25 (std::string Widget::getMacAddress() const): List Count :: 1
W libMAcAddressTest.so: ..\MAcAddressTest\widget.cpp:30 (std::string Widget::getMacAddress() const): STR :: ""i also have permission enabled in my AndroidManifest.xml but nothing helped me here
Thank You in advance.
Since Android 6.0:
https://developer.android.com/about/versions/marshmallow/android-6.0-changes#behavior-hardware-id
To provide users with greater data protection, starting in this release, Android removes programmatic access to the device’s local hardware identifier for apps using the Wi-Fi and Bluetooth APIs. The WifiInfo.getMacAddress() and the BluetoothAdapter.getAddress() methods now return a constant value of 02:00:00:00:00:00.
To access the hardware identifiers of nearby external devices via Bluetooth and Wi-Fi scans, your app must now have the ACCESS_FINE_LOCATION or ACCESS_COARSE_LOCATION permissions:
WifiManager.getScanResults()
BluetoothDevice.ACTION_FOUND
BluetoothLeScanner.startScan()Note: When a device running Android 6.0 (API level 23) initiates a background Wi-Fi or Bluetooth scan, the operation is visible to external devices as originating from a randomized MAC address.
I recommend you use Java (JNI) to get the WiFi MAC Address. (Add
android.permission.ACCESS_WIFI_STATE
permission)WifiManager manager = (WifiManager) getSystemService(Context.WIFI_SERVICE); WifiInfo info = manager.getConnectionInfo(); String address = info.getMacAddress();
Note: some Android devices also have a wired network connection (mostly Android TV devices though)