Is it possible in Xamarina to get information about the signal strength of all available wifi nearby? I am working on an application that collects and processes information about nearby wifi networks. I also want to get this information without having to connect to a given network.
FIX (The application was not allowed to perform the scan):
//Define permissions
private string[] permissions = new string[]
{
Android.Manifest.Permission.AccessFineLocation
};
//Permission check
ActivityCompat.RequestPermissions(this, permissions, 0);