Remove Samsung Bloatware with ADB

Download ADB for macOS from https://www.xda-developers.com/install-adb-windows-macos-linux/

nn

1. Enable Developer Options and USB Debugging

n

Go to your device’s “Settings.”

n

Scroll down and select “About phone.”

n

Locate “Build number” and tap it multiple times (usually 7 times) until you see a message saying you are now a developer.

n

Go back to the main “Settings” menu and now you should see “Developer options” or “System” > “Developer options.”

n

Enable “USB Debugging.”

n

2. Install ADB on your computer:nDownload ADB for macOS from https://www.xda-developers.com/install-adb-windows-macos-linux/ and follow the instructions given on this page.

nnn

3. Connect your Device:nConnect your Samsung device to your computer using a USB Type-C cable.

n

4. Open Command Prompt or Terminal:nOn macOS open Terminal.

n

5. Grant ADB Permissions:nA popup will appear on your phone asking for permission to allow USB debugging from the connected computer. Allow it.

n

6. Verify Device Connection:nIn the command prompt or terminal, type the following command to ensure your device is recognized by ADB:Copy codenadb devices

n

7. List System Apps:nTo list all installed packages (apps) on your device, run the following command:

adb shell pm list packages 

n

8. Identify Bloatware Packages:nLook through the list of packages to identify the ones you want to remove. Bloatware apps usually start with “com.samsung” or “com.sec.”

n

9. Uninstall or Disable Packages:nTo uninstall a package (app), use the following command

adb shell pm uninstall -k --user 0 package_name 

Replace “package_name” with the actual name of the package you want to uninstall.

nn

To disable a package (app) without completely removing it, use:

adb shell pm disable-user --user 0 package_name

n

10. Reboot:

n

After you’ve uninstalled or disabled the desired apps, you can reboot your device using the following command

adb reboot

Leave a Reply

Your email address will not be published. Required fields are marked *