Protected applications on Android are apps that the manufacturer or operating system blocks from standard removal. They can be system (for example, Google Play Music or Samsung Knox), preinstalled a telecom operator (like MTS Music or Beeline TV), or device administrators (for example, corporate MDM solutions). Even if you never use them not used, they take up memory space, consume battery power and can be displayed in the application menu.
Unlike regular apps, which are deleted with a long tap on the icon, protected applications require special methods. In this article, we will analyze all current methods of uninstalling them - from safe (through settings and ADB) to radical (using rootrights). Important: not all methods are suitable for your smartphone model, and some may lead to loss of warranty or unstable operation of the system. Before you begin, check whether the application really interferes with the operation of the device - sometimes. it is enough disable or hide.
Why not remove a protected application in the standard way
Android divides applications into three categories according to access level:
- ๐ฑ Custom - installed by you from Google Play or
APK. Can be deleted without restrictions. - ๐ System โbuilt into the firmware (Google Chrome, YouTube, proprietary utilities Samsung/Xiaomi). They cannot be deleted without additional rights.
- ๐ก๏ธ Protected by the administrator โblocked by security policies (corporate applications, Find My Device, Android Device Policy). They require removing the administrator status.
Manufacturers and telecom operators integrate such apps into the firmware for several reasons:
- ๐ฐ Partnership agreements โ telecom operators (MTS, Beeline) receive money for pre-installing their services.
- ๐ง System functionality โsome applications (Google Play Services) are critical for operation Android.
- ๐ข Corporate policies โon work phones, deletion of email clients or MDM solutions may be blocked.
โ ๏ธ Attention: Removing system applications without understanding their role can lead to errors in the camera, GPS, push notifications or complete system instability. For example, deletion Google Play Services will deprive you of access to Google Maps, Gmail and other services.
Method 1: Disabling the application (without deleting)
If the goal is to simply hide the application from the menu and stop its operation, disable it is enough. This method does not require superuser rights and is safe for the system.
Instructions:
- Open
Settings โ Applications. - Click on the three dots in the upper right corner and select
Show system ones(on some firmware -All applications). - Find the desired application in the list and tap on it.
- Click
Disable(orStopif the buttonDisableis inactive). - Confirm the action in the window that appears.
After disconnecting:
- ๐ต The application will disappear from the menu and launcher.
- โ๏ธ It will not start automatically and consume resources.
- ๐ Updates for it will no longer be installed.
โ ๏ธ Attention: On some firmware (MIUI, ColorOS), disabled applications may appear again after updating the system. In this case, you will need to repeat the procedure.
Make a backup copy of important ones. data|
Check whether the application is critical for the system|
Write down the name of the application (in case of recovery)|
Make sure that the device has enough battery power-->
Method 2: Uninstall via ADB (without root access)
ADB (Android Debug Bridge) is a debugging tool that allows you to control the device through a computer. With its help, you can remove many system applications without obtaining root access, but you need to enable USB debugging and install drivers.
Step-by-step guide:
- Preparing the PC:
- Download Platform Tools (official package from Google).
- Unzip the archive to any folder (for example,
C:\adb). - Install drivers for your device (for example, Samsung USB Driver for smartphones Samsung).
- Phone setup:
- Go to
Settings โ About phone โ Build numberand tap on it 7 times to activateDeveloper Mode. - Go back to
Settings โ System โ For Developersand enableUSB Debugging.
- Go to
- Connect the phone to the PC via cable (select mode
File transfer). - Open the command line (
Win + Rโ entercmdโEnter). - Go to the folder c
ADB:cd C:\adb - Check the connection:
adb devices(the name of your device should appear).
- Delete the application with the command:
adb shell pm uninstall -k --user 0 com.example.app(replace
com.example.appwith the real application package).
How to find the application package name?
- ๐ Use the application App Inspector (available in Google Play).
- ๐ Or run the command:
adb shell pm list packages | find "application_name"(for example,
find "facebook").
| Application | Package name | Can I delete via ADB |
|---|---|---|
| Google Play Music | com.google.android.music |
Yes |
| Samsung Knox | com.sec.knox.seandroid |
Partially (root may be required) |
| MTS Services | ru.mts.services |
Yes |
| YouTube | com.google.android.youtube |
Yes (but updates will return) |
โ ๏ธ Attention: Removal viaADBvalid only for the current user (--user 0). After a factory reset or system update, the application may return. Also, some firmware (for example, on Huawei) block this command.
adb backup -apk -obb -shared -all -f backup.ab
This will save all applications and data in case of recovery.-->
Method 3: Using root access (for experienced users)
If the previous methods did not work, the most radical remains method - removal using root access. This gives complete control over the system, but has risks:
- ๐ซ Loss of warranty (manufacturers consider root hacking).
- ๐ Possible "brick" (turning the phone into a "brick") in case of an error.
- ๐ก๏ธ Malware vulnerability (root opens access to system files).
How to get root access?
- ๐ฑ For Samsung: use Magisk + patch for Odรญn.
- ๐ฑ For Xiaomi: unlock the bootloader via Mi Unlock Tool, then flash TWRP and Magisk.
- ๐ฑ For Google Pixel: use Fastboot + Magisk.
After getting root, delete the application through:
- File manager with root access (for example, Root Explorer):
- Go to
/system/app/or/system/priv-app/. - Find the folder with the name of the application (for example
Chrome). - Delete the folder or rename it (add
.bakat the end). - Reboot the device.
- Go to
surm -rf /system/app/FolderName
reboot
- Select an application in the list.
- Tap
Delete!. - Confirm the action.
- Save important data to Google Drive or computer.
- Go to
Settings โ System โ Reset settings. - Select
Delete all data (factory reset). - Confirm the action (you may need to enter a PIN code or pattern).
What to do if after deleting the system application the phone does not turn on?
If the device is frozen at the logo or goes into bootloop, try:
Log in Recovery Mode (usually Power + Volume Up).
2. Select Wipe Cache Partition.
3. Reboot.
If that doesnโt help, flash the stock firmware via Odรญn (for Samsung) or Fastboot (for Pixel/Nexus).
Method 4: Reset to factory settings (as a last resort)
If a protected application was installed telecom operator or corporate policy, and other methods did not work, reset remains to factory settings. This will delete all data from the device, including accounts, photos and installed apps.
How to do reset:
After reset:
- ๐ฑ Operator applications (MTS Music, Beeline TV) will disappear.
- ๐ System applications (Google Duรณ, Samsung Health) will return.
- ๐ Corporate restrictions (if the phone is linked to MDM) will remain.
โ ๏ธ Attention: On some devices (for example, Samsung s Knox), resetting may activate the flagKnox Trip, which will invalidate guarantee. Check this in boot mode (Download Mode): if the lineKnox Warranty Voidis0x1, the warranty is lost.
Method 5: Using custom firmware (for enthusiasts)
If you ready to go further than just deleting applications, you can install custom firmware (for example, LineageOS, Pixel Experience or Havoc-OS). It will replace the standard system with a โcleanโ one Android without pre-installed garbage.
Advantages of the method:
- ๐งน Complete absence of bloatware (unnecessary applications).
- ๐ Higher performance and battery life.
- ๐ Regular security updates (on older devices).
Cons:
- ๐ง Difficult to install (requires bootloader unlocking, TWRP, knowledge of commands
fastboot). - ๐ต Possible instability (not all functions may work, for example Samsung Pay or for Widevine L1 For Netflix in HD).
- ๐ก๏ธ Risk of losing data if there is an error.
- Unlock the bootloader (for Xiaomi โvia Mi Unlock Tool, for Google Pixel โby command
fastboot flashing unlock). - Install custom recovery (TWRP) via
fastboot:fastboot flash recovery twrp.img - Download the firmware (for example, LineageOS for your model) and GApps (if you need services Google).
- Load into TWRP (
Power + Volume Up) and runWipe โ Advanced Wipe(checkDalvik, Cache, System, Data). - Install the firmware and GApps via
Install. - Reboot.
- Go to
Settings โ Security โ Device administrators(on some firmware the path may differ:Settings โ Biometrics and security โ Other security settings โ Phone administrators). - Find the desired application in the list and uncheck the box next to it.
- Confirm the action (you may be required to enter a password).
- Now the application can be disabled or deleted via
ADB. - ๐ Check the section
Settings โ Accounts โ Accounts corporate(for work phones). - ๐ต The application may be blocked by policy MDM โin this case, you can delete it only after resetting it to factory settings or contacting the company administrator.
- ๐ The firmware restores system applications after the update.
- ๐ฆ The application was deleted only for the current user (
--user 0). - ๐ง The manufacturer has blocked deletion via
ADB(relevant for Huawei, Honor after 2019). - ๐ Applications with high consumption in the background.
- ๐ก apps that actively use
GPSor the mobile network. - ๐ Processes with constant activity (for example, Android System or Mediaserver).
- โ
After
ADBโsome applications will be deleted (for example, Samsung Free, Game Launcher). - โ Applications associated with Knox (
com.sec.knox.*remove not recommended - this may break protection Samsung Pay and corporate functions. - โ ๏ธ Removing via
rootwill trigger the flagKnox Trip(the warranty will expire). - ๐ Factory reset settings - will return all system applications.
- ๐ฅ Manual APK installation โdownload the file from the website APKMirror and install via
ADB:adb install file_name.apk - ๐ง Stock firmware โvia Odรญn (for Samsung) or Fastboot (for Pixel).
Step-by-step guide:
Custom firmware is the most radical way to get rid of protected applications, but it is only suitable for experienced users. For beginners, it is better to stop at disabling or ADB.
What to do if the application is protected by the device administrator
Some applications (for example, Android Device Policy, Find My Device or corporate MDM-solutions) have the status device administratorThey cannot be deleted. or disable until this status is removed.
How to remove administrator rights:
If there is no item with administrators:
FAQ: Frequently asked questions about deleting protected applications
Is it possible to delete Google Play Services?
โ No, this is a critical system application. Removing it will lead to inoperability of most Google services (including Play Market, Gmail, Maps) and many third-party apps. The maximum that can be done is disable updates through Settings โ Applications โ Google Play Services โ Three dots โ Delete updates.
Why does the application return after being deleted via ADB?
This happens because:
Solution: use ADB with the flag --user all (requires root) or install custom firmware.
How to find out which application is consuming the battery?
Go to Settings โ Battery โ Battery Usage. All apps that consume battery power are displayed here, including system ones. data-i="327">Settings โ Battery โ Battery usage
If a system application is to blame, try it disable or limit the background activity.
Is it possible to delete applications on a phone with Knox (Samsung)?
๐น Yes, but with reservations:
The best option for Samsung is to use Package Disabler Pro (requires root or payment for the premium version).
How to return a deleted system application?
Recovery methods: