-
- All Implemented Interfaces:
-
de.robv.android.xposed.IXposedMod
public interface IXposedHookLoadPackage implements IXposedMod
Get notified when an app ("Android package") is loaded. This is especially useful to hook some app-specific methods.
This interface should be implemented by the module's main class. Xposed will take care of registering it as a callback automatically.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classIXposedHookLoadPackage.Wrapper
-
Method Summary
Modifier and Type Method Description abstract voidhandleLoadPackage(XC_LoadPackage.LoadPackageParam lpparam)This method is called when an app is loaded. -
-
Method Detail
-
handleLoadPackage
abstract void handleLoadPackage(XC_LoadPackage.LoadPackageParam lpparam)
This method is called when an app is loaded. It's called very early, even before onCreate is called.Modules can set up their app-specific hooks here.
- Parameters:
lpparam- Information about the app.
-
-
-
-