mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-05 12:57:38 +03:00
Ignore system proxy settings before Android 10
This commit is contained in:
parent
4892c54313
commit
76eb0988f3
1 changed files with 5 additions and 10 deletions
|
@ -163,19 +163,14 @@ class VPNService : VpnService(), PlatformInterfaceWrapper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.isHTTPProxyEnabled) {
|
if (options.isHTTPProxyEnabled && Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
systemProxyAvailable = true
|
systemProxyAvailable = true
|
||||||
systemProxyEnabled = Settings.systemProxyEnabled
|
systemProxyEnabled = Settings.systemProxyEnabled
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
|
||||||
if (systemProxyEnabled) builder.setHttpProxy(
|
if (systemProxyEnabled) builder.setHttpProxy(
|
||||||
ProxyInfo.buildDirectProxy(
|
ProxyInfo.buildDirectProxy(
|
||||||
options.httpProxyServer,
|
options.httpProxyServer, options.httpProxyServerPort
|
||||||
options.httpProxyServerPort
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
} else {
|
|
||||||
error("android: tun.platform.http_proxy requires android 10 or higher")
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
systemProxyAvailable = false
|
systemProxyAvailable = false
|
||||||
systemProxyEnabled = false
|
systemProxyEnabled = false
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue