Then I found a class in this project SslUtil.java:
public static boolean shouldDenyRequest(int error)
{
assert error >= -215 && error <= -200;
switch (error)
{
case -213:
case -212:
case -211:
case -208:
case -207:
case -206:
case -203:
// case -202:
case -201:
// case -200:
case -150:
case -129:
return true;
}
return false;
}
I just annotate case 200 ,202 ;it will work normal
It will toast net::ERR_SUCURITY_RESPONSE .
Then I found a class in this project SslUtil.java:
I just annotate case 200 ,202 ;it will work normal