diff --git a/net/dnscache/dnscache.go b/net/dnscache/dnscache.go index 9de232e11..c63581d78 100644 --- a/net/dnscache/dnscache.go +++ b/net/dnscache/dnscache.go @@ -31,6 +31,11 @@ func preferGoResolver() bool { return false } + // The local resolver is not available on Android. + if runtime.GOOS == "android" { + return false + } + // Otherwise, the Go resolver is fine and slightly preferred // since it's lighter, not using cgo calls & threads. return true