public interface IXposedHookLoadPackage
This interface should be implemented by the module's main class. Xposed will take care of registering it as a callback automatically.
| Modifier and Type | Interface and Description |
|---|---|
static class |
IXposedHookLoadPackage.Wrapper |
| Modifier and Type | Method and Description |
|---|---|
void |
handleLoadPackage(XC_LoadPackage.LoadPackageParam lpparam)
This method is called when an app is loaded.
|
void handleLoadPackage(XC_LoadPackage.LoadPackageParam lpparam) throws java.lang.Throwable
Application.onCreate() is called.
Modules can set up their app-specific hooks here.lpparam - Information about the app.java.lang.Throwable - Everything the callback throws is caught and logged.