| Interface | Description |
|---|---|
| IXposedHookInitPackageResources |
Get notified when the resources for an app are initialized.
|
| IXposedHookLoadPackage |
Get notified when an app ("Android package") is loaded.
|
| IXposedHookZygoteInit |
Hook the initialization of Zygote process(es), from which all the apps are forked.
|
| Class | Description |
|---|---|
| IXposedHookInitPackageResources.Wrapper | |
| IXposedHookLoadPackage.Wrapper | |
| IXposedHookZygoteInit.StartupParam | |
| XC_MethodHook |
Callback class for method hooks.
|
| XC_MethodHook.MethodHookParam<T extends java.lang.reflect.Executable> |
Wraps information about the method call and allows to influence it.
|
| XC_MethodReplacement |
A special case of
XC_MethodHook which completely replaces the original method. |
| XposedBridge | |
| XposedHelpers |
Helpers that simplify hooking and calling methods/constructors, getting and settings fields, ...
|
| Error | Description |
|---|---|
| XposedHelpers.ClassNotFoundError |
Thrown when a class loader is unable to find a class.
|
| XposedHelpers.InvocationTargetError |
This class provides a wrapper for an exception thrown by a method invocation.
|