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
我注释这部分代码后,功能正常使用 //判断 是否开启锁屏密码
if (mKeyManager.isKeyguardSecure()) { publishSubject.onNext(new IdentificationInfo(KEYGUARDSECURE_MISSIING_ERROR)); isDeviceSupport = false; }
The text was updated successfully, but these errors were encountered:
是的,这里代码在上次修改后失误删掉了“!”,应该是下面的代码,新代码已经提交
if (!mKeyManager.isKeyguardSecure()) { publishSubject.onNext(new IdentificationInfo(KEYGUARDSECURE_MISSIING_ERROR)); isDeviceSupport = false; }
Sorry, something went wrong.
是的,这里代码在上次修改后失误删掉了“!”,应该是下面的代码,新代码已经提交 if (!mKeyManager.isKeyguardSecure()) { publishSubject.onNext(new IdentificationInfo(KEYGUARDSECURE_MISSIING_ERROR)); isDeviceSupport = false; }
但是依赖里面1.2.1的版本,还是原来的代码,那个感叹号并没有加上
是的,这里代码在上次修改后失误删掉了“!”,应该是下面的代码,新代码已经提交 if (!mKeyManager.isKeyguardSecure()) { publishSubject.onNext(new IdentificationInfo(KEYGUARDSECURE_MISSIING_ERROR)); isDeviceSupport = false; } 但是依赖里面1.2.1的版本,还是原来的代码,那个感叹号并没有加上
估计不维护了
No branches or pull requests
我注释这部分代码后,功能正常使用
//判断 是否开启锁屏密码
The text was updated successfully, but these errors were encountered: