├── .github └── FUNDING.yml ├── Clean.png └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | ## Supported 4 | github: K3V1991 5 | 6 | ## Currently unsupported 7 | patreon: 8 | open_collective: 9 | ko_fi: 10 | tidelift: 11 | community_bridge: 12 | liberapay: 13 | issuehunt: 14 | otechie: 15 | lfx_crowdfunding: 16 | custom: 17 | -------------------------------------------------------------------------------- /Clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K3V1991/How-to-uninstall-Android-Apps-Non-Root/5d91490947cffc301594e9d4606df2a086c0d0b0/Clean.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 |

How to uninstall Android Apps (Non-Root)

3 |

Uninstall Bloatware without Root Access (They are just being uninstalled for the current User)

4 |
5 | 6 |

7 | 8 | 9 | 10 | 11 |

12 |
13 |
14 | 15 | ## Requirements: 16 | * Windows OS 17 | * Download ADBKit - [GitHub](https://github.com/K3V1991/ADBKit) 18 | * USB Driver for your Device or [Universal ADB Driver](https://adb.clockworkmod.com/) 19 | 20 | ## Enable Developer Options & USB Debugging: 21 | 1. Install the USB Driver for your Phone or Universal Adb Driver 22 | 2. On your Phone, go to ```Settings``` > ```About Phone```. Find the ```Build Number``` and tap on it ```7``` times to enable Developer Options 23 | 3. Now enter ```System``` > ```Developer Options``` and find ```USB debugging``` and enable it 24 | 4. Plug your Phone into the Computer and change it from ```Charge only``` to ```File Transfer``` Mode 25 | 5. On your Computer, browse to the Directory where you extracted the ADBKit Zip 26 | 6. Launch a Command Prompt with ```Open CMD.bat``` 27 | 7. Once you’re in the Command Prompt, enter the following Command: 28 | ``` 29 | adb devices 30 | ``` 31 | 8. System is starting the ADB Daemon (If this is your first Time running ADB, you will see a Prompt on your Phone asking you to authorize a Connection with the Computer. Click OK.) 32 | 9. Succesful enabled USB Debugging 33 | 34 | ## Uninstall Apps: 35 | 1. Enable adb shell, type: 36 | ``` 37 | adb shell 38 | ``` 39 | and hit Enter 40 | 41 | 2. Uninstall App (Example Package "YouTube"): 42 | ``` 43 | pm uninstall --user 0 com.google.android.youtube 44 | ``` 45 | and hit Enter 46 |
47 | 48 | ## Re-install Apps: 49 | 1. Enable adb shell, type: 50 | ``` 51 | adb shell 52 | ``` 53 | and hit Enter 54 | 55 | 2. Re-install App (Example Package "YouTube"): 56 | ``` 57 | cmd package install-existing com.google.android.youtube 58 | ``` 59 | and hit Enter 60 | --------------------------------------------------------------------------------