-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from MlgmXyysd/master
Fix fingerprint on ColorOS Non-A/B devices
- Loading branch information
Showing
7 changed files
with
19 additions
and
27 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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Magisk Module for ColorOS | ||
|
||
feature | ||
## feature | ||
|
||
fix fingerprint when magiskhide enabled | ||
|
||
remove developer options warning notification | ||
- fix fingerprint when magiskhide enabled | ||
- remove developer options warning notification | ||
- fix fingerprint on ColorOS Non-A/B devices | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
id=coloros-magisk | ||
name=Magisk ColorOS | ||
version=1.0 | ||
versionCode=1 | ||
author=wuxianlin | ||
version=1.1 | ||
versionCode=2 | ||
author=wuxianlin & MlgmXyysd | ||
description=Magisk Module for ColorOS |
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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
#!/system/bin/sh | ||
# Do NOT assume where your module will be located. | ||
# ALWAYS use $MODDIR if you need to know where this script | ||
# and module is placed. | ||
# This will make sure your module will still work | ||
# if Magisk change its mount point in the future | ||
MODDIR=${0%/*} | ||
|
||
# This script will be executed in post-fs-data mode | ||
resetprop ro.boot.flash.locked 0 | ||
resetprop ro.boot.vbmeta.device_state unlocked | ||
resetprop ro.boot.verifiedbootstate orange |
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 |
---|---|---|
@@ -1,9 +1,12 @@ | ||
#!/system/bin/sh | ||
# Do NOT assume where your module will be located. | ||
# ALWAYS use $MODDIR if you need to know where this script | ||
# and module is placed. | ||
# This will make sure your module will still work | ||
# if Magisk change its mount point in the future | ||
MODDIR=${0%/*} | ||
|
||
# This script will be executed in late_start service mode | ||
# Make SafetyNet pass | ||
|
||
while [ "$(getprop sys.boot_completed)" != "1" ]; do | ||
sleep 1 | ||
done | ||
|
||
resetprop ro.boot.flash.locked 1 | ||
resetprop ro.boot.vbmeta.device_state locked | ||
resetprop ro.boot.verifiedbootstate green |
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
...m/etc/permissions/com.magisk.features.xml → ...em/etc/permissions/developer_features.xml
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