Magisk
Magisk copied to clipboard
Remove incorrect instruction of resetprop
This instruction is wrong because the prop doesn't exist when boot is not completed.
cc @yujincheng08
I intentionally didnt write it in a while-loop for non-existent props, because not all the people like the sleep 1
.
Why not use this?
while [ "$(getprop sys.boot_completed)" != "1" ]; do
sleep 1
done
Does resetprop -w
have any advantages over it? It is more compatible than resetprop -w
This instruction is wrong because the prop doesn't exist when boot is not completed.
Was trying to dismiss 🫤