forked from LSPosed/LSPosed
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Avoid changing `system.prop`: there is already no need to add system-wise `dex2oat` flags, since LSPosed provides a wrapper for it, see https://nullptr.icu/index.php/archives/53/ for detailed explanation; 2. Postpone initialization of LSPlant: initialization of `initInfo` during the `onLoad` Zygisk api will change the order of parsed files in memory, especially bring the item `libart.so` forward; 3. Close opened virtual map file: this should no longer be a problem after the second point is applied since it is no longer opened during `onLoad`, but let us close it as a good practice; 4. Remove /data/resource-cache mount: introduced in LSPosed#1627, most likely designed to solve problems in early versions of root solutions and being reverted does not change the function of deamon since we will have to wait sufficient time in `waitSystemService` of `LSPosedService` manager. Of course, more tests are neeeded on different devices to see if parasitic notification manager will work as expected.
- Loading branch information
1 parent
984bb1c
commit 156c6ae
Showing
5 changed files
with
21 additions
and
19 deletions.
There are no files selected for viewing
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
156c6ae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LSPosed/magisk-loader/magisk_module/customize.sh
Line 120 in 156c6ae
156c6ae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@HuskyDG Thank you for the information, I will add commits for the compatibility. Didn't notice it before.