Adapt LSPosedBridge to convention-based hooker discovery#534
Merged
JingMatrix merged 1 commit intomasterfrom Feb 13, 2026
Merged
Adapt LSPosedBridge to convention-based hooker discovery#534JingMatrix merged 1 commit intomasterfrom
JingMatrix merged 1 commit intomasterfrom
Conversation
We update `LSPosedBridge` to align with upstream API changes, which have replaced annotation-based hooker discovery with a naming convention. The `doHook` implementation has been refactored to: - Remove dependencies on the deleted `io.github.libxposed.api.annotations` package (`XposedHooker`, `BeforeInvocation`, `AfterInvocation`). - Scan for public static methods explicitly named `before` and `after` instead of relying on annotations. - Enforce validation on these named methods to ensure they match the required signatures. To adapt to this change, existing Hooker classes are refactored by removing the deprecated annotations and renaming their callback methods to `before` and `after` respectively.
Owner
Author
|
The upstream made this change without increasing the It is arguable of how to implement this. |
JingMatrix
added a commit
that referenced
this pull request
Feb 14, 2026
We update `LSPosedBridge` to align with upstream API changes, which have replaced annotation-based hooker discovery with a naming convention. The `doHook` implementation has been refactored to: - Remove dependencies on the deleted `io.github.libxposed.api.annotations` package (`XposedHooker`, `BeforeInvocation`, `AfterInvocation`). - Scan for public static methods explicitly named `before` and `after` instead of relying on annotations. - Enforce validation on these named methods to ensure they match the required signatures. To adapt to this change, existing Hooker classes are refactored by removing the deprecated annotations and renaming their callback methods to `before` and `after` respectively. Co-authored-by: frknkrc44 <krc440002@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We update
LSPosedBridgeto align with upstream API changes, which have replaced annotation-based hooker discovery with a naming convention.The
doHookimplementation has been refactored to:io.github.libxposed.api.annotationspackage (XposedHooker,BeforeInvocation,AfterInvocation).beforeandafterinstead of relying on annotations.To adapt to this change, existing Hooker classes are refactored by removing the deprecated annotations and renaming their callback methods to
beforeandafterrespectively.