Package net_62v.external
Interface IMundoProcessCallback
public interface IMundoProcessCallback
Process callback interface, you can implement this interface for process lifecycle callback
- Version:
- 1.0
- Author:
- king@62v.net
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
The default implementation of the process callbackdefault void
Callback after the internal application node onCreate
You can use the xposed callback here, and do something related to modifying el applicationdefault void
Callback after the environment prepared, and you can modify the system service
on this function.
-
Method Details
-
onCreate
The default implementation of the process callback- Parameters:
packageName
- See the methodonCreate(String, String, String)
processName
- See the methodonCreate(String, String, String)
-
onCreate
Callback after the internal application node onCreate
You can use the xposed callback here, and do something related to modifying el application- Parameters:
packageName
- package name of the internal applicationprocessName
- process name of current running applicationuserName
- the user name of current running application
-
onInitialized
default void onInitialized()Callback after the environment prepared, and you can modify the system service
on this function.
This callback will only be called on the main UI thread,
Do not put any time consumption tasks on this callback!
-