forked from topjohnwu/Magisk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make main app fully independent from the stub
- Skip 0x7f01XXXX - 0x7f05XXXX resource IDs in the main app; they are reserved for stub resources - Support sending additional data from host to guest - Use resource mapping passed from host when they are being sent to the system framework (notifications and shortcuts)
- Loading branch information
Showing
16 changed files
with
161 additions
and
133 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ out | |
*.apk | ||
/config.prop | ||
/update.sh | ||
/stub-ids.txt | ||
|
||
# Built binaries | ||
native/out | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
com.topjohnwu.magisk:color/xxxxxxxx = 0x7f010000 | ||
com.topjohnwu.magisk:drawable/xxxxxxxx = 0x7f020000 | ||
com.topjohnwu.magisk:string/xxxxxxxx = 0x7f030000 | ||
com.topjohnwu.magisk:style/xxxxxxxx = 0x7f040000 | ||
com.topjohnwu.magisk:xml/xxxxxxxx = 0x7f050000 |
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
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
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
com.topjohnwu.magisk:style/SplashThemeBase.V19 = 0x7f040000 | ||
com.topjohnwu.magisk:string/app_name = 0x7f030000 | ||
com.topjohnwu.magisk:string/yes = 0x7f030001 | ||
com.topjohnwu.magisk:style/SplashTheme = 0x7f040001 | ||
com.topjohnwu.magisk:drawable/sc_superuser = 0x7f020000 | ||
com.topjohnwu.magisk:string/no_thanks = 0x7f030002 | ||
com.topjohnwu.magisk:drawable/ic_splash_activity = 0x7f020001 | ||
com.topjohnwu.magisk:drawable/sc_magiskhide = 0x7f020002 | ||
com.topjohnwu.magisk:color/light = 0x7f010000 | ||
com.topjohnwu.magisk:string/no_internet_msg = 0x7f030003 | ||
com.topjohnwu.magisk:drawable/sc_extension = 0x7f020003 | ||
com.topjohnwu.magisk:drawable/ic_magisk_outline = 0x7f020004 | ||
com.topjohnwu.magisk:color/ic_launcher_background = 0x7f010001 | ||
com.topjohnwu.magisk:xml/file_paths = 0x7f050000 | ||
com.topjohnwu.magisk:drawable/sc_cloud_download = 0x7f020005 | ||
com.topjohnwu.magisk:string/ok = 0x7f030004 | ||
com.topjohnwu.magisk:drawable/ic_magisk = 0x7f020006 | ||
com.topjohnwu.magisk:drawable/ic_superuser = 0x7f020007 | ||
com.topjohnwu.magisk:drawable/ic_cloud_download = 0x7f020008 | ||
com.topjohnwu.magisk:style/SplashThemeBase = 0x7f040002 | ||
com.topjohnwu.magisk:drawable/ic_magiskhide = 0x7f020009 | ||
com.topjohnwu.magisk:drawable/ic_launcher = 0x7f02000a | ||
com.topjohnwu.magisk:drawable/ic_logo = 0x7f02000b | ||
com.topjohnwu.magisk:drawable/ic_extension = 0x7f02000c | ||
com.topjohnwu.magisk:string/upgrade_msg = 0x7f030005 | ||
com.topjohnwu.magisk:color/dark = 0x7f010002 | ||
com.topjohnwu.magisk:drawable/ic_magisk_padded = 0x7f02000d |
Oops, something went wrong.