using magisk place script to /data/adb/service.d chmod +x auto.sh
Created
January 5, 2024 06:33
-
-
Save mohamad-supangat/91fbdb0313915927a86fa8f7b987e63d to your computer and use it in GitHub Desktop.
Auto Change Android Battery level to 100 every 3 second
This file contains hidden or 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
#!/system/bin/sh | |
while true | |
do | |
dumpsys battery set level 100 | |
sleep 5 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment