| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Java Xposed Api for LSPlant
Please note that this is only a partial implementation of Xposed, since we only need method hooking. Thus, only XposedBridge and hook classes are implemented. If you need the rest, just copy paste it from original Xposed and it should work with almost no modificiations.
Additionally, XposedBridge contains these new methods:
repositories {
maven("https://maven.aliucord.com/releases")
}
dependencies {
// The dependency version can be changed to `main-SNAPSHOT` to target the latest build,
// or a short git commit hash to target a specific commit build.
implementation "com.aliucord:Aliuhook:1.1.3"
}XposedBridge.hookMethod(Activity.class.getDeclaredMethod("onCreate", Bundle.class), new XC_MethodHook() {
@Override
public void beforeHookedMethod(MethodHookParam param) throws Throwable {
Log.d(TAG, "Activity" + param.thisObject + "about to be created!");
}
});| Back | FazBrowse Home | New Git URL |