Package 

Interface IXposedHookZygoteInit

  • 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.

    • Method Summary

      Modifier and Type Method Description
      abstract void initZygote(IXposedHookZygoteInit.StartupParam startupParam) Called very early during startup of Zygote.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait