Skip to content

Instantly share code, notes, and snippets.

@jackblk
Created February 10, 2022 04:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackblk/27ae042363c9ea543cd1f444a3068068 to your computer and use it in GitHub Desktop.
Save jackblk/27ae042363c9ea543cd1f444a3068068 to your computer and use it in GitHub Desktop.
disable auto update on android, this is for samsung phone
  • Conected phone via USB to PC (Windows 7 64 bits). Waited a while for drivers to install.
  • Installed "minimal_adb_fastboot_v1.4.3_setup.exe" (from XDA-Developers).
  • Enabled USB DEBUG under "Config / Developer Options" on phone.
  • Connected phone to PC via USB.
  • Opened a Command Prompt under the folder "C:\Program Files (x86)\Minimal ADB and Fastboot"
  • Typed ADB SHELL, and the phone´s shell opened.
  • Then I used the following commands:
# to find packages:

pm list packages | grep soagent
pm list packages | grep wssyncmldm

# to disable packages (USE THESE):
pm disable-user --user 0 com.sec.android.soagent
pm disable-user --user 0 com.wssyncmldm

# to reenable later (IF YOU CHANGE YOUR MIND):
pm enable --user 0 com.sec.android.soagent
pm enable --user 0 com.wssyncmldm

ref

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment