XposedBridge icon indicating copy to clipboard operation
XposedBridge copied to clipboard

A little mistake in the example of the Xposed Framework API.

Open yuguorui opened this issue 8 years ago • 1 comments

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()

yuguorui avatar Feb 12 '17 08:02 yuguorui

Related to pull #143. Cheers.

davcec avatar Nov 08 '17 10:11 davcec