-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Labels
enhancementNew feature or requestNew feature or request
Description
This issue is to report and propose a fix for an encountered problem related to io.netty.resolver.dns.DnsServerAddressStreamProviders
on macOS, specifically affecting Apple Silicon (ARM64) users.
I propose a script statement that applies only to macOS, without affecting users of other OSs.
def isAppleSilicon() {
return System.getProperty("os.name") == "Mac OS X" && System.getProperty("os.arch") == "aarch64"
}
dependencies {
implementation ...
if (isAppleSilicon()) { runtimeOnly('io.netty:netty-resolver-dns-native-macos:4.1.94.Final:osx-aarch_64') }
...
- relate to issue: netty issue tickets
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request