eycorsican / kitsunebi-android

A fully-featured V2Ray client for Android.
MIT License
1.76k stars 315 forks source link

Quic模式无法使用? #124

Open bitching opened 4 years ago

bitching commented 4 years ago

你正在使用哪个版本?

1.8.0

使用最新版本是否还遇到同样的问题?

it is

你的手机型号和手机操作系统版本是多少?

Pixel/Android10 Xiaomi A2/Android 9

你遇到了什么问题?

mKCP/ws/TCP等模式使用正常,Quic模式无法连接

你遇到的问题可以用固定步骤重现吗?

参数与PC端一毛一样即可

你正使用的配置

手机端生成的配置
{
  "dns": {
    "servers": [
      "223.5.5.5",
      "1.1.1.1"
    ]
  },
  "log": {
    "loglevel": "none"
  },
  "outbounds": [
    {
      "protocol": "vmess",
      "settings": {
        "vnext": [
          {
            "address": "xxx.xxx",
            "port": xxxx,
            "users": [
              {
                "id": "xxxxxxxxxxxxx",
                "security": "chacha20-poly1305"
              }
            ]
          }
        ]
      },
      "streamSettings": {
        "network": "quic",
        "quicSettings": {
          "header": {
            "type": "none"
          },
          "key": "xxxxxxxxxxxx",
          "security": "chacha20-poly1305"
        }
      },
      "tag": "proxy"
    },
    {
      "protocol": "freedom",
      "settings": {
        "domainStrategy": "AsIs"
      },
      "tag": "direct"
    },
    {
      "protocol": "blackhole",
      "settings": {},
      "tag": "block"
    }
  ],
  "policy": {
    "levels": {
      "0": {
        "bufferSize": 4096,
        "connIdle": 300,
        "downlinkOnly": 0,
        "handshake": 4,
        "uplinkOnly": 0
      }
    }
  },
  "routing": {
    "domainStrategy": "AsIs",
    "rules": [
      {
        "domain": [
          "geosite:google"
        ],
        "outboundTag": "proxy",
        "type": "field"
      },
      {
        "domain": [
          "geosite:cn"
        ],
        "outboundTag": "direct",
        "type": "field"
      },
      {
        "ip": [
          "geoip:cn",
          "geoip:private"
        ],
        "outboundTag": "direct",
        "type": "field"
      },
      {
        "network": "tcp,udp",
        "outboundTag": "proxy",
        "type": "field"
      }
    ]
  }
}