Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

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

@yuguorui

Description

@yuguorui

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions