-
- All Implemented Interfaces:
-
de.robv.android.xposed.IXposedMod
public interface IXposedHookZygoteInit implements IXposedMod
Hook the initialization of Zygote process(es), from which all the apps are forked.
Implement this interface in your module's main class in order to be notified when Android is starting up. In IXposedHookZygoteInit, you can modify objects and place hooks that should be applied for every app. Only the Android framework/system classes are available at that point in time. Use
{@code null}as class loader for findAndHookMethod and its variants.If you want to hook one/multiple specific apps, use IXposedHookLoadPackage instead.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classIXposedHookZygoteInit.StartupParamData holder for initZygote.
-
Method Summary
Modifier and Type Method Description abstract voidinitZygote(IXposedHookZygoteInit.StartupParam startupParam)Called very early during startup of Zygote. -
-
Method Detail
-
initZygote
abstract void initZygote(IXposedHookZygoteInit.StartupParam startupParam)
Called very early during startup of Zygote.
- Parameters:
startupParam- Details about the module itself and the started process.
-
-
-
-