Skip to content

Instantly share code, notes, and snippets.

@diewland
Created December 11, 2019 15:26
Show Gist options
  • Save diewland/81c687a5a5dfbf7325690908aa751319 to your computer and use it in GitHub Desktop.
Save diewland/81c687a5a5dfbf7325690908aa751319 to your computer and use it in GitHub Desktop.
Remove Samsung Game Services on S9+
# [1] list packages
#adb shell pm list packages -f | grep game | grep samsung
#
#package:/system/priv-app/GameHome/GameHome.apk=com.samsung.android.game.gamehome
#package:/system/priv-app/GameTools_Dream/GameTools_Dream.apk=com.samsung.android.game.gametools
#package:/system/app/GameOptimizingService/GameOptimizingService.apk=com.samsung.android.game.gos
# [2] get package path
#adb shell pm path com.samsung.android.game.gamehome
#adb shell pm path com.samsung.android.game.gametools
#adb shell pm path com.samsung.android.game.gos
#
#package:/system/priv-app/GameHome/GameHome.apk
#package:/system/priv-app/GameTools_Dream/GameTools_Dream.apk
#package:/system/app/GameOptimizingService/GameOptimizingService.apk
# [3] download apks
#adb pull /system/priv-app/GameHome/GameHome.apk .
#adb pull /system/priv-app/GameTools_Dream/GameTools_Dream.apk .
#adb pull /system/app/GameOptimizingService/GameOptimizingService.apk .
#
#/system/priv-app/GameHome/GameHome.apk: 1 file pulled. 17.1 MB/s (20135489 bytes in 1.125s)
#/system/priv-app/GameTools_Dream/GameTools_Dream.apk: 1 file pulled. 16.6 MB/s (11344884 bytes in 0.650s)
#/system/app/GameOptimizingService/GameOptimizingService.apk: 1 file pulled. 17.3 MB/s (7475537 bytes in 0.412s)
# [4] remove apps from phone --- https://www.xda-developers.com/uninstall-carrier-oem-bloatware-without-root-access/
adb shell pm uninstall -k --user 0 com.samsung.android.game.gamehome
adb shell pm uninstall -k --user 0 com.samsung.android.game.gametools
adb shell pm uninstall -k --user 0 com.samsung.android.game.gos
#
# Success
# Success
# Success
# [5] re-install packages (optional)
#adb shell cmd package install-existing com.samsung.android.game.gamehome
#adb shell cmd package install-existing com.samsung.android.game.gametools
#adb shell cmd package install-existing com.samsung.android.game.gos
#
#Package com.samsung.android.game.gamehome installed for user: 0
#Package com.samsung.android.game.gametools installed for user: 0
#Package com.samsung.android.game.gos installed for user: 0
@TimAshe77AI
Copy link

Im fixn to take this whole thing above these games dwn for good

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