YouzanMobileSDK-Android
YouzanMobileSDK-Android copied to clipboard
YZBaseWebView中重置了ApplicationInfo的flags值
查看源码发现initSettings方法中对ApplicationInfo.flags重新赋值为2
`//是否开启chrome debug 模式
if (Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) {
if (0 != (context.getApplicationInfo().flags &= ApplicationInfo.FLAG_DEBUGGABLE)) {
WebView.setWebContentsDebuggingEnabled(true);
}
}`
库:x5web 版本:2.0.23 会导致View的paddingStart和paddingEnd在某些极端场景下显示异常