We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AdbDevice中的以下判断写错了版本号,4.3的SDK_INI应该是18,所以这里应该是17而不是16 209 // android 4.3 以下没有 displays 210 int sdkv = Integer.parseInt(sdk); 211 String shellCmd = sdkv > 16 ? "dumpsys window displays | sed -n '3p'" : "dumpsys window";
209 // android 4.3 以下没有 displays
210 int sdkv = Integer.parseInt(sdk);
211 String shellCmd = sdkv > 16 ? "dumpsys window displays | sed -n '3p'" : "dumpsys window";
The text was updated successfully, but these errors were encountered:
谢谢提出,已修复
Sorry, something went wrong.
No branches or pull requests
AdbDevice中的以下判断写错了版本号,4.3的SDK_INI应该是18,所以这里应该是17而不是16
209 // android 4.3 以下没有 displays
210 int sdkv = Integer.parseInt(sdk);
211 String shellCmd = sdkv > 16 ? "dumpsys window displays | sed -n '3p'" : "dumpsys window";
The text was updated successfully, but these errors were encountered: