Android INSTALL_BLOCKEDHigh

How to Disable Play Protect When Installing Apps on Android

Google Play Protect blocking app installations from unknown sources? In this article, you'll find proven ways to bypass protection: from simply disabling scanning to advanced methods via ADB. All solutions work on Android 8+.

Updated at February 15, 2026
5-10 min
Easy
FixPedia Team
Применимо к:Android 8.0 and aboveGoogle Play Services 20+All devices with Play Protect

What the Play Protect Error Means

The Play Protect error occurs when Google Play Protect blocks the installation of an app that:

  • Was not downloaded from Google Play
  • Did not pass the automatic malware check
  • Has suspicious permissions or behavior

The full message usually looks like this:

"Installation blocked"
Google Play Protect blocked the installation of this app because it may harm your device.

The error appears when trying to install an APK file via the system installer and does not allow you to proceed without disabling protection.

Causes

  1. App from an unknown source — The APK was downloaded from a website, not Google Play.
  2. False positive from Play Protect — Google's algorithms considered the app suspicious (common for apps with access to SMS, contacts, or modified versions).
  3. Outdated app version — An old APK may have vulnerabilities that Play Protect flags as dangerous.
  4. Conflict with device policy — Some devices (e.g., from Samsung, Xiaomi) have additional security systems that duplicate the block.
  5. Too strict Play Protect settings — Options like "Scan apps" and "Scan device for threats" are enabled.

Method 1: Disable Scanning in Play Protect Settings

This is the simplest and most universal method. You disable automatic scanning only temporarily for the installation.

  1. Open the Google Play Store.
  2. Tap your avatar in the top right corner → Play Protect & device management.
  3. Tap the gear icon (Settings) in the top right corner.
  4. Find the Scan device for threats toggle and turn it off.
  5. Confirm the action in the dialog that appears.
  6. Now install the desired APK file (open it from the Downloads folder via a file manager).
  7. After installation, be sure to turn the toggle back on.

⚠️ Important: Do not leave scanning disabled for long. This disables protection against malware.

Method 2: Use the "Install anyway" Button

On some devices and Android versions, when the Play Protect warning appears, there is a hidden button that allows you to bypass the block without fully disabling it.

  1. Start the APK file installation (open it via Downloads).
  2. When the "Installation blocked" window appears, tap More details or Additional info (text may vary).
  3. A button labeled "Install anyway" (sometimes "Install anyway") should appear.
  4. Tap it and confirm the installation.

If the button is not present, proceed to Method 1 or 3.

Method 3: Temporary Disable via ADB (for Advanced Users)

If Play Protect settings lack a disable option (e.g., on some Chinese firmware), use ADB.

Requirements:

  • USB debugging enabled in developer options
  • ADB installed on your computer
# 1. Connect device to PC and allow debugging
adb devices  # verify connection

# 2. Disable Play Protect temporarily
adb shell pm disable-user --user 0 com.google.android.gms

# 3. Install the APK (if not installed)
adb install path/to/file.apk

# 4. Re-enable Play Protect
adb shell pm enable --user 0 com.google.android.gms

💡 Tip: The pm disable-user command disables only for the current user, without uninstalling the app.

Method 4: Add an Exception in Play Protect (if available)

Some versions of Play Protect allow adding folders or apps to exceptions.

  1. Open Play StorePlay Protect & device managementSettings.
  2. Find the Exceptions or Trusted apps section.
  3. Tap Add exception and specify the folder where you save APK files (e.g., Download).
  4. Now apps from this folder will not be scanned automatically.

Prevention

  1. Install only from trusted sources — Google Play or official developer websites.
  2. Check APK files with VirusTotal before installation (upload the file to virustotal.com).
  3. Do not leave Play Protect disabled — re-enable it immediately after installation.
  4. Update Google Play Services — new versions improve scan accuracy.
  5. On corporate devices — ask your administrator to add the necessary app to a whitelist via an EMM (Enterprise Mobility Management) policy.

Frequently Asked Questions

Q: After disabling Play Protect, installation still doesn't work. What to do?
A: Check if the "Unknown sources" option is enabled for the file manager or browser you are using to launch the installation. Go to Settings → Apps → Special permissions → Unknown sources and allow it for the relevant app.

Q: Can I completely remove Play Protect?
A: No, it is a system component of Google Play Services. Removing it will cause the Store and other services to malfunction. Only disable it.

Q: Why doesn't the app launch after bypassing the block?
A: The app itself may be corrupted or incompatible with your Android version. Try downloading the APK from a different source or an older/newer version.

Q: Will this method work on Android 14+?
A: Yes, but on Android 14 and above, Google has tightened policies. Instead of a full disable, you may need to grant install permission for each app individually via Settings → Apps → Special permissions → Install unknown apps.

F.A.Q.

Why does Play Protect block safe apps?
Is it safe to completely disable Play Protect?
Why is there no 'Install Anyway' button?
How to add an app to Play Protect exceptions?

Hints

Open Play Protect settings
Disable scanning
Install the app
Alternative method
FixPedia

Free encyclopedia for fixing errors. Step-by-step guides for Windows, Linux, macOS and more.

© 2026 FixPedia. All materials are available for free.

Made with for the community