Last active
December 5, 2025 16:08
-
-
Save muness/f04acec1d6ac523a94a3a7a6a2f86493 to your computer and use it in GitHub Desktop.
Bigme Hibreak Pro debloat script
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
| #!/bin/bash | |
| # Bigme Hibreak Pro Debloat Script | |
| # Safe to disable packages | |
| safe_packages=( | |
| "com.xrz.ai" | |
| "com.xrz.dictapp" | |
| "com.b300.xrz.web" | |
| "com.xrz.soundrecord" | |
| "com.xrz.voice.text" | |
| "com.xrz.scandoc" | |
| "com.xrz.video" | |
| "com.xrz.bookmall" | |
| "com.xrz.bookself" | |
| "com.xrz.xreaderV3" | |
| "com.xrz.btranslate" | |
| "com.xrz.ebook" | |
| "com.ebook.wifitransferbook" | |
| "com.iflytek.speechcloud" | |
| "com.socialnmobile.colordict" | |
| "com.test.logcollect" | |
| "com.xsyt.faceregister" | |
| "com.mediatek.aovtestapp" | |
| "com.sohu.inputmethod.sogou.oem" | |
| ) | |
| echo "Starting debloat process..." | |
| echo "Packages to disable: ${#safe_packages[@]}" | |
| echo "" | |
| # Check if device is connected | |
| if ! adb devices | grep -q "device$"; then | |
| echo "Error: No device detected. Please connect your device and authorize USB debugging." | |
| exit 1 | |
| fi | |
| # Disable safe packages | |
| for package in "${safe_packages[@]}"; do | |
| echo "Disabling: $package" | |
| adb shell pm disable-user --user 0 "$package" | |
| if [ $? -eq 0 ]; then | |
| echo "✓ Successfully disabled: $package" | |
| else | |
| echo "✗ Failed to disable: $package (may not exist)" | |
| fi | |
| echo "" | |
| done | |
| echo "Debloat process complete!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment