universal-android-debloater/README.md

61 lines
1.8 KiB
Markdown
Raw Normal View History

2019-04-01 01:34:25 +13:00
# Universal Android Debloater
2019-03-31 03:42:24 +13:00
2019-03-31 05:04:18 +13:00
Bash script using ADB for unrooted smartphones.
2019-03-31 03:42:24 +13:00
2019-04-20 12:11:12 +12:00
**DISCLAIMER** : I am not responsible for thermonuclear war, you getting fired because you disabled the alarm app or for anything that could happen to your phone actually. :)
2019-04-20 12:17:34 +12:00
Don't worry, this script is pretty safe if you only use my debloat lists. The worse thing you can do is "deleting" (you don't delete actually -- cf.FAQ) a system packet essential to the system preventing the phone to boot correctly (bootloop). After about 5 failed system boot, the phone will automatically boot into recovery mode enabling you to do a FACTORY RESET.
You can NOT brick your device with this script !
2019-04-20 12:11:12 +12:00
2019-04-01 01:34:25 +13:00
## Features :
- Quick search among all the packages of a phone
- Uninstall system/user package
- Reinstall system package
- Backup all .apk from system/user apps stored in internal memory
- Restore an existed backup
- Brand device detection and auto-selection of the appropriate debloat list
2019-04-20 11:23:48 +12:00
## Supported brands :
- Asus
- LG
2019-03-31 03:42:24 +13:00
- Huawei
2019-04-20 11:23:48 +12:00
- Nokia
- Samsung
2019-04-14 10:00:29 +12:00
- Sony
2019-04-20 11:23:48 +12:00
- Xiaomi
2019-03-31 03:42:24 +13:00
2019-04-01 01:34:25 +13:00
## Debloat lists :
- Brand's firmware related
2019-03-31 03:42:24 +13:00
- Facebook related
- T-Mobile related
- Microsoft related
- Google related
- Miscellaneous
2019-04-14 10:00:29 +12:00
## === TODO list ===
2019-04-20 11:23:48 +12:00
- **Add debloat list for Wiko, Motorola, Google (Pixel)**
2019-04-20 12:11:12 +12:00
- **Wiki and FAQ (What to do if the phone is in bootloop etc...)
2019-03-31 03:42:24 +13:00
- Add optionnal installation of alternative FOSS apps (F-droid, YalpStore,Silence...)
2019-03-31 05:04:18 +13:00
- Improve UI/UX
- Add Windows compatibility
2019-04-01 01:34:25 +13:00
- Add in comment the purpose of each deleted package
2019-04-20 11:37:41 +12:00
## How to use it (Newbies) :
2019-04-20 12:11:12 +12:00
- **Read the FAQ (Wiki Section)**
- Install *Android plateform tools* with your package manager :
2019-04-20 11:37:41 +12:00
Debian Base :
```console
apt-get install android-sdk-platform-tools
```
2019-04-20 11:38:20 +12:00
Arc-Linux Base :
2019-04-20 11:37:41 +12:00
```console
pacman -S android-tools
```
2019-04-20 12:11:12 +12:00
- Go to the release section and download the .zip file
- Execute *debloat_script.sh* et voilà !
2019-03-10 02:29:04 +13:00