-
|
(Package name - made.by.human.tiktokantiburn) Steps to reproduce/复现步骤Assemble and install. AndroidProject.zip Expected behaviour/预期行为Since I wrote in the code that every application opening should call log(), accordingly, I expect to see that there will be a whole list of applications in the logs (or at least those that are marked in scope.list), but I don't see anything :( I created a new project, did everything all over again and got no result. I might have misunderstood something, for which I apologize, I am not a native English speaker. Actual behaviour/实际行为As i already said, nothing works for me :( Xposed Module List/Xposed 模块列表Lucky Patcher (disabled), Pixel XPert (disabled)Root implementation/Root 方案Magisk 29, SELinux Enforcing System Module List/系统模块列表Lucky Patcher, Pixel XPert, Play Integrity Fix, Tricky Store, Wifi force-country-code AU, YetAnotherBootloopProtector, Zapret, LSPosed (Everything is disabled for the test except LSPosed)LSPosed version/LSPosed 版本1.10.1 (7184) Android version/Android 版本Android 16 QPR 1, Pixel OS, (Android Studio - 2024.3.2) Version requirement/版本要求
Logs/日志Result of adb logcat on device startup & using: |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 1 reply
-
|
It might be your problem instead of mime: Please try some well-developped modules, such as |
Beta Was this translation helpful? Give feedback.
-
|
I installed a I can reset the phone to factory settings, but it will take a little time, backup is already being prepared |
Beta Was this translation helpful? Give feedback.
-
|
Then it is your module problem: you failed to write a functioning module. Try learn from those mentioned modules. |
Beta Was this translation helpful? Give feedback.
-
|
Maybe I didn't make it clear, in my first message, the log indicated that you failed to properly implement any sub-interface of XposedModule. |
Beta Was this translation helpful? Give feedback.
-
|
Oh, sorry, but my entire module is a logging code (since I can't go even further than that), this is what it looks like: To be honest, it's now the 30th hour of work on the module. I have tried all the options for specifying entry points and goal lists (including through the manifest) based on various modules publicly available on Github. To no avail. Even if I don't use the "sub-interface" methods for the module, I have no idea why: It is not a sub-interface (At least that's how I imagine the module to work) I asked ChatGPT if it was possible Xposed couldn't see my module because there was nothing but logs in the handleLoadPackage function - he replied "yes", but from the very beginning I wrote the module right away, since it was extremely simple (and as you can see, I'm here now). |
Beta Was this translation helpful? Give feedback.
-
|
I turn your issue into this discussion so people from the community would kindly offer their helps. |
Beta Was this translation helpful? Give feedback.
-
|
The problem is that you included the xposed folder in META-INF, this makes lsposed load the modern API which is different from the legacy API dependency you are using in the project. just remove that folder and your project should work. |
Beta Was this translation helpful? Give feedback.
The problem is that you included the xposed folder in META-INF, this makes lsposed load the modern API which is different from the legacy API dependency you are using in the project. just remove that folder and your project should work.