Modern smartphones have turned into repositories of our personal lives, where the concentration of confidential information requires reliable protection. Many users are faced with a situation where they need unlock a specific application to provide access to relatives or to simplify the daily use of the gadget. Sometimes the problem arises because the security code was installed accidentally, forgotten, or is no longer required due to changed circumstances.

The process of deactivating the protection depends on which tool was used to install the “lock”. In the ecosystem Android there are several levels of restrictions: built-in functions of the manufacturer's shell, third-party utilities like AppLock or system access rights. Understanding the source of blocking is the first and most important step towards solving the problem, since the methods of disabling are radically different.

In this article we will analyze in detail the action algorithms for various scenarios. You will learn how to correctly disable protection through system settings, what to do if you have forgotten the master password of a third-party application, and what radical reset methods exist. We will also look at the nuances of working with different versions of the operating system and interfaces from brands such as Xiaomi, Samsung and Huawei.

Disabling built-in application locking

Most modern smartphone manufacturers implement the application protection function directly into the shell of their operating system. This is the most common scenario that device owners encounter. To remove such a lock, you need to find the corresponding section in the settings menu, which is often hidden deep in the security or privacy settings.

On devices Xiaomi (shell MIUI or HyperOS) the path usually lies through the menu "Settings" → "Applications" → "Protection" applications." Here the system will ask you to enter your pattern key or password that you set earlier. After successful authentication, you will see a list of all protected apps. It is enough to simply switch the toggle switch opposite the desired application to an inactive state to remove the restriction.

In smartphones Samsung the situation is a little more complicated, since the “Secure Folder” function (Secure Folder) is often used there. If the application is inside this folder, it will not be accessible from outside without unlocking the container. To completely disable protection, you need to go to the settings of the Secure Folder itself and select the option to delete or disable the function, which will require entering the password for your account Samsung Account.

⚠️ Attention: When you disable the built-in protection on some models Huawei and Honor the system may require you to enter a screen unlock PIN code as confirmation of the owner's identity. Make sure you remember this code before starting the procedure.

If you are using pure Android or custom firmware, there may not be a built-in function, and then the blocking is implemented through the user profile or special features. If so, check out the Digital Wellbeing and Parental Controls section. There may be a timer or startup restriction set, which visually looks like a lock. Disabling parental controls will require entering a special PIN code set when setting up your profile.

Removing and setting up third-party blockers

If the built-in tools were not enough for you, you probably used third-party solutions from the store Google Play. Applications like AppLock, Norton App Lock or CM Locker run on top of the system and intercept the app launch event. To remove the lock in this case, it is not enough to simply uninstall the blocker application, since it may have device administrator rights that prevent uninstallation.

First, you need to go to the settings of the blocker itself. Typically, this requires entering a master password, fingerprint, or answering a security question. Inside the menu, find the “Settings” or “Profile” section and select the “Disable protection” or “Exit” option. Only after the application status changes to “Inactive” can you proceed to completely remove it from the device.

If you have forgotten the password for a third-party blocker, the situation becomes more complicated. Many modern applications have a recovery function via linked email. Click on the “Forgot your password?” button on the code entry screen. The system will send a reset link or a new temporary code to the one specified during registration Email. This is the safest and most legal way to regain access.

  • 🔐 Check whether the “Hidden Mode” function is enabled in the blocker settings, which masks the application icon.
  • 📧 Make sure that you have access to the email specified when initially setting up protection.
  • 🛡️ Before deleting, be sure revoke the device administrator rights in the Android security settings.
📊 How did you install a lock on applications?
Built-in phone tools
Third-party application from the Play Market
Through superuser rights (Root)
I don’t remember how this appeared

Sometimes users are faced with a situation where the blocker application freezes or does not start, requiring a password that is not accepted. In such cases, clear application data through the system menu. Go to Settings → Applications → All applications, find your blocker in the list and click “Storage” (or “Memory”). Select the "Clear data" option. This will reset all locker settings, including the password, but will also delete the list of protected apps.

Resetting the lock through safe mode

If standard methods do not work or the locker application behaves incorrectly, booting your smartphone in safe mode would be an excellent solution. In this mode, the operating system Android starts only with pre-installed system applications, ignoring all software downloaded by the user. This allows you to bypass the protection of third-party utilities and remove them without entering a password.

To enter safe mode, you usually need to hold down the power button until the shutdown menu appears. Then press and hold your finger on the Power Off or Restart icon on the screen. The system will prompt you to switch to safe mode - confirm the action. After rebooting, you will see “Safe Mode” in the corner of the screen. Now you can safely go into the settings and remove the problematic application.

The removal process in safe mode is identical to the usual one: go to Settings → Applications, find the blocker and click “Delete”. Since the application's security mechanisms are not active in this mode, it will be uninstalled without prompting for a password. After successful uninstallation, simply reboot your phone as usual to return to normal system operation.

⚠️ Attention: Some phone functions may not work in safe mode, such as mobile network or Wi-Fi, depending on the device model. Don't be alarmed, this is normal system behavior for diagnostic purposes.

There is a nuance for devices with non-removable batteries and specific buttons. On some models Samsung or LG the combination of buttons may differ: sometimes you need to hold down the volume down button immediately after turning on the screen with the manufacturer's logo. If the first method does not work, try to find the exact instructions for your specific model on the Internet, since the implementation of Safe Mode varies among different vendors.

💡

If the phone itself reboots when you try to enter Safe Mode, malware may be blocking this function. In this case, only a reset through the Recovery menu will help.

Using ADB to forcefully remove protection

For advanced users who are not afraid to work with the computer, there is a powerful debugging tool ADB (Android Debug Bridge). This method allows you to control your smartphone from a PC and remove applications or disable their components even without unlocking the screen, provided that “USB Debugging” was previously enabled on the phone. This is one of the most effective ways bypass protection.

First you need to install ADB drivers on your computer and connect your phone with a cable. Open a command line or terminal on your PC and enter the command to test the connection: adb devices. If the device appears in the list, the connection is established. Next, you can use the command to remove the locker package, knowing its exact package name.

adb shell pm uninstall --user 0 com.example.applock

Replace com.example.applock with the real package name of your lock application. You can find out in advance through applications like App Inspector or by looking in the phone settings in the “About the application” section. This command will remove the application for the current user, effectively deactivating it without losing data on the device itself. The method works quickly and does not require root access.

ADB command Description of action Risk of data loss
adb shell pm disable-user Disables the application without uninstalling No
adb shell pm uninstall Full removal applications Application data only
adb shell input keyevent Emulation of button presses (for unlocking) No
adb reboot Device reboot No

It is important to understand that if USB debugging was not enabled before the password issue occurred, this method will not work. When connected, the phone will ask for debugging permission on the screen, which you will not be able to confirm due to the lock. In such a situation, the only option left is to completely reset the settings or use specialized software to remove the screen lock.

How to find the name of the application package?

Install the App Inspector application from the Play Market. Launch it, find your blocker in the list. The package name will appear below the application name, for example, com.domobile.applock. Copy it for use in ADB.

Radical measures: Factory reset

When all soft methods have been exhausted, and access to important data inside applications is critical, you have to resort to extreme measures. A full device reset (Hard Reset) will return the phone to the “as from the store” state, deleting all user data, settings and, of course, all installed locks. This is a guaranteed way to remove any software lock.

You can perform a reset through the Recovery menu. To do this, turn off your phone completely. Then hold down a combination of buttons (most often it is Volume Up + Power or Volume Down + Power) and hold them until the logo or recovery menu appears. In the menu controlled by the volume buttons, select the item Wipe data/factory reset and confirm the action with the power button.

After the process is completed, the phone will reboot and you will have to go through the initial setup. All applications will be removed, so you will have to install them again from the store. Unfortunately, data inside applications (correspondence, notes, progress in games) that have not been synchronized with the cloud will be irretrievably lost.

⚠️ Attention: Before performing a Hard Reset, make sure that you remember the login and password for your Google account. After the reset, the system will require you to enter them to confirm ownership of the device (FRP protection).

There are also service centers and specialized software that can remove the lock without losing data, but such services are often paid and do not guarantee results on new versions of Android. Data encryption in modern systems is done in such a way that without a key (password) it is almost impossible to decrypt information even for professionals.

💡

Resetting to factory settings is the only 100% working method if you have forgotten the password and have not enabled USB debugging, but it entails a complete loss of all data on the device.

Prevention and access control in future

In order not to encounter the problem of forgotten passwords and blocked applications in the future, it is recommended to take a competent approach to setting up security. Use biometric security methods such as fingerprint or facial recognition where possible. They are not only more convenient, but also less likely to be forgotten compared to graphic keys or digital codes.

When installing third-party blockers, be sure to link them to your email and write down security questions in a safe place. Regularly check the list of applications with administrator rights in your security settings. If you see a app there that shouldn't be there, or that you no longer use, immediately revoke the rights and remove it.

  • 📝 Write down complex passwords in a password manager or in a paper notepad stored in a safe place.
  • 🔄 Regularly back up important data to cloud services (Google Disk, Yandex.Disk).
  • 👀 Periodically check the “Parental Control” settings to make sure that restrictions are not turned on accidentally.

It is also worth paying attention to the “Smart blocking” function (Smart Lock) in the Android settings. It allows you to keep your phone unlocked in certain places (for example, at home) or when connected to trusted devices (smart watches, cars). This reduces the need to constantly enter a password, reducing the risk that you will forget it due to infrequent use.

☑️ Secure setup checklist

Done: 0 / 5
Is it possible to remove the lock from the application without losing data?

Yes, this is possible if you use the built-in system tools and know the password, or if you have USB debugging enabled and are using ADB. Entering Safe Mode to remove third-party blockers also helps. However, if the password is forgotten and debugging is turned off, it is extremely difficult to save data inside a locked application due to encryption.

Why did the lock remain after deleting the application?

Most likely, the application had device administrator rights, which prevented its complete removal, or the blocking was implemented through a system profile or parental controls, and not through the app itself. In this case, you need to revoke administrator rights in security settings or check your digital well-being settings.

How to remove the lock if the phone screen is also locked?

If both the screen and applications are locked, you will need to unlock the screen first. If you have forgotten your screen password, the only way to help is to reset it through the Recovery menu (Hard Reset), which will delete all data. After this, the applications will be accessible, but without the information stored inside them.

Is it safe to use password cracking apps?

Most apps that promise to “crack” a password without losing data are fraudulent or contain viruses. Real reset tools (like ADB or specialized software for service centers) require technical knowledge. Downloading dubious utilities can lead to the theft of your personal data.

What to do if FRP protection works after a reset?

FRP protection (Factory Reset Protection) requires entering a Google account that was synchronized with the phone before the reset. This is protection against theft. You need to enter the same email and password. If you don't remember them, use the procedure for restoring your Google account on another device.