You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
In this example, the third parameter should be "methodName", but it was forgotten accidentally.
correct: findAndHookMethod("com.example.SomeClass", lpparam.classLoader, "doSomething",String.class, int.class, "com.example.MyClass", new XC_MethodHook()
wrong: findAndHookMethod("com.example.SomeClass", lpparam.classLoader, String.class, int.class, "com.example.MyClass", new XC_MethodHook()
The text was updated successfully, but these errors were encountered:
When I surfed the Xposed framework API website, I found a little mistake in the [XposedHelpers.findAndHookMethod()](http://api.xposed.info/reference/de/robv/android/xposed/XposedHelpers.html#findAndHookMethod(java.lang.String, java.lang.ClassLoader, java.lang.String, java.lang.Object...))'s example.
In this example, the third parameter should be "methodName", but it was forgotten accidentally.
correct:
findAndHookMethod("com.example.SomeClass", lpparam.classLoader, "doSomething",String.class, int.class, "com.example.MyClass", new XC_MethodHook()
wrong:
findAndHookMethod("com.example.SomeClass", lpparam.classLoader, String.class, int.class, "com.example.MyClass", new XC_MethodHook()
The text was updated successfully, but these errors were encountered: