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:
- [email protected]
-
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.default boolean
Return true to apply redirect the Facebook login from the interior apps to the outside browser.
May cause crash or app freeze (black or white screen) for somehow.
We're recommend you to use the stock app instead of redirecting the login prompt to an outside browser, this method has NO AVAILABILITY GUARANTEE.
-
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! -
shouldInterpretFacebookBrowser
default boolean shouldInterpretFacebookBrowser()Return true to apply redirect the Facebook login from the interior apps to the outside browser.
May cause crash or app freeze (black or white screen) for somehow.
We're recommend you to use the stock app instead of redirecting the login prompt to an outside browser, this method has NO AVAILABILITY GUARANTEE.- Returns:
- true to interpret the Facebook app login
-