I'm trying to get my current Wifi SSID on Android 10. The code from Android 9 or lower does not work anymore. Is there any sample for Android 10?
Regards Hacki
I'm trying to get my current Wifi SSID on Android 10. The code from Android 9 or lower does not work anymore. Is there any sample for Android 10?
Regards Hacki
Set his two permissions requests into your project manifest file:
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"\>
Than you have to set Application permission manually by using Settings screen of Android.
Since API 26 (Android 8 Oreo) you need to obtain the user location permission in order to get the wifi name (SSID), which is why also in Android 9 (API 28), Android 10 (API 29) or Android 11 (API 30) and newer you may get
<unknown name>
as the SSID returned or02:00:00:00:00:00
.For that, in AndroidManifest.xml:
I will provide some demo code written in Kotlin.
For declaring your permission request success code, we store it in a companion object (Kotlin way for storing constants) inside the class we are testing from (MainActivity in this case) or you may define a class explicitly for constants, which is actually a common practice.
In your testing activity:
For checking an requesting the permission:
For actually getting the SSID (wifi name):
Tested on the emulator on API 29 (Android 10).