FingerprintPay icon indicating copy to clipboard operation
FingerprintPay copied to clipboard

支付宝支付不弹指纹识别的解决办法!

Open xi8964 opened this issue 1 year ago • 0 comments

找到类com.surcumference.fingerprint.plugin.impl.alipay.AlipayBasePlugin,注释掉第152-156行:
//                        if (ViewUtils.findViewByName(activity, "com.alipay.android.phone.mobilecommon.verifyidentity", "simplePwdLayout") == null
//                                && ViewUtils.findViewByName(activity, "com.alipay.android.phone.mobilecommon.verifyidentity", "mini_linSimplePwdComponent") == null
//                                && ViewUtils.findViewByName(activity, "com.alipay.android.phone.mobilecommon.verifyidentity", "input_et_password") == null) {
//                            return;
//                        }
第241行修改为:
View payTextView = ViewUtils.findViewByText(activity.getWindow().getDecorView(), "支付宝支付密码", "支付寶支付密碼", "Alipay Payment Password", "请输入支付密码");
重新打包即可。

xi8964 avatar May 11 '24 05:05 xi8964