All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.virjar.ratel.api.xposed.IRXposedHookZygoteInit Maven / Gradle / Ivy

Go to download

ratel api,used for developer on ratel system,an extension for xposed framewrok,ratel api compatable with original xposed framework

There is a newer version: 1.3.6
Show newest version
package com.virjar.ratel.api.xposed;

public interface IRXposedHookZygoteInit {
    /**
     * Called very early during startup of Zygote.
     *
     * @param startupParam Details about the module itself and the started process.
     * @throws Throwable everything is caught, but will prevent further initialization of the module.
     */
    void initZygote(StartupParam startupParam) throws Throwable;

    /**
     * Data holder for {@link #initZygote}.
     */
     class StartupParam {
        public StartupParam() {
        }

        /**
         * The path to the module's APK.
         */
        public String modulePath;

        /**
         * Always {@code true} on 32-bit ROMs. On 64-bit, it's only {@code true} for the primary
         * process that starts the system_server.
         */
        public boolean startsSystemServer;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy