How to get WiFi MAC address of Android device ?
-
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.
Apparently, 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...
-
@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.@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. -
@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.
-
@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.
@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.
@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?
@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)