Conversation
Review Summary by QodoUpgrade to Xposed API 101 with new hooker pattern
WalkthroughsDescription• Upgrade Xposed API from version 100 to 101 • Refactor hooker implementations to use new Chain-based intercept pattern • Remove libxposed-compat compatibility layer module • Update logging calls to include log level and tag parameters • Migrate callback-based hooks to instance-based Hooker implementations • Update requestScope calls to accept List instead of String parameter Diagramflowchart LR
A["Xposed API 100"] -->|upgrade| B["Xposed API 101"]
C["Annotation-based Hookers"] -->|refactor| D["Chain-based Hookers"]
E["libxposed-compat module"] -->|remove| F["Direct API usage"]
G["Old logging API"] -->|update| H["New logging with level/tag"]
B --> D
F --> D
H --> D
File Changes1. gradle/libs.versions.toml
|
Code Review by Qodo
1. Identity not restored
|
696e796 to
ad66615
Compare
|
/review |
|
Persistent review updated to latest commit ad66615 |
Fix #155