I started creating an Android app wifi Wifi direct functionality. I do a peer discover and I like to see the peers in a listview.
I now have a app which tries to discover peers and shows the peers in a list.
But I'm facing the problem that this works fine on my Android 5 device. Here I can see my Android 8 device, but not the other way around. I cannot see my Android 5 device on my Android 8 device.
I followed steps from here: https://developer.android.com/training/connect-devices-wirelessly/nsd
And also discovered this post: Android O issues with WiFi Peer Discovery which says that I need to ask for permissions before continuing.
My manifest:
<uses-permission
android:required="true"
android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission
android:required="true"
android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission
android:required="true"
android:name="android.permission.CHANGE_WIFI_STATE"/>
<uses-permission
android:required="true"
android:name="android.permission.INTERNET"/>
What could be the problem? Maybe I can provide more information if needed to solve the problem?
To solve above problem with Android 8(Oreo), There are two steps to do:
1) Grant location permission.
2) Enable Location service/ Turn on GPS of device.
Below code open dialog for enable location.