public interface

IXposedHookLoadPackage

de.robv.android.xposed.IXposedHookLoadPackage
Known Indirect Subclasses

Class Overview

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.

Summary

Public Methods
abstract void handleLoadPackage(XC_LoadPackage.LoadPackageParam lpparam)
This method is called when an app is loaded.

Public Methods

public abstract void handleLoadPackage (XC_LoadPackage.LoadPackageParam lpparam)

This method is called when an app is loaded. It's called very early, even before Application.onCreate() is called. Modules can set up their app-specific hooks here.

Parameters
lpparam Information about the app.
Throws
Throwable Everything the callback throws is caught and logged.