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
@Proxy("i") @TargetClass("android.util.Log") public static int printLog(String tag, String msg) { msg = msg + "----lancet"; return (int) Origin.call(); } @TargetClass(value = "android.support.v7.app.AppCompatActivity", scope = Scope.LEAF) @Insert(value = "onStop", mayCreateSuper = true) protected void onStop() { Log.i("ZLOVE", "hello word"); Origin.callVoid(); }
打印出来的是 hello word,而不是hello word----lancet
The text was updated successfully, but these errors were encountered:
带有 Lancet 注解的类不会被二次注入,建议调整位置,将Log.i 这句放在非 Hook 类内调用
Sorry, something went wrong.
No branches or pull requests
打印出来的是 hello word,而不是hello word----lancet
The text was updated successfully, but these errors were encountered: