I have an application that looks for bluetooth names in a service, it works correctly on phones other than Samsung, on samsung it doesn't work, 
admin.StartDiscovery does nothing, it's as if it ignored that line of code, any idea what might be happening?
	
	
	
	
	
	
	
	
	
		    If admin.IsEnabled Then
        'admin.StartDiscovery
        Dim success As Boolean = admin.StartDiscovery 'Not Working
        If success = False Then
            LogColor("Error starting discovery process.", Colors.Red)
        End If
    Else
        admin.Enable
    End If
	 
	
	
		
	
 
Thanks