andhook.lib.AndHook.invoke()

Here are the examples of the java api andhook.lib.AndHook.invoke() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : XposedBridge.java
with GNU General Public License v3.0
from qly5213

public static Object invokeOriginalMethod(final int slot, final Object thisObject, final Object[] args) {
    return AndHook.invoke(slot, thisObject, args);
}