Disable Game Optimizing Service (GOS) from your Samsung Galaxy

Samsung is notorious for its bloatware, pre-installed apps, and unnecessary system packages on all of its smartphones, even on their $1000+ devices. While we already have a tutorial on how to uninstall or remove bloatware from any Android device, we would like to enlighten you on a must-remove app called Game Optimizing Service.

Game Optimizing Service (GOS) is the main culprit for most of the problems on your Samsung device including performance issues, touchscreen response issues, and poor battery life.

What is Bloatware?

In simple terms, Bloatware is any unwanted service or app that comes pre-bundled onto an operating system by either the manufacturer or the carrier. It can range from anything like carrier bloat such as the SMS app, bill & payments app, Chat Support, Device Manager, Cloud, Find My Phone, and many more.

This can cause all sorts of problems on a smartphone. The most common one is performance degradation followed by out-of-storage issues and ultimately severe battery drain. Then there is a problem with duplicate apps.

What is Game Optimizing Service?

According to the Galaxy Store listing, GameOptimizingService offers features for game-related apps currently provided by Samsung including Game Launcher, Game Tools, Game Tuner, and Game Box Launcher.

GOS continuously optimizes system performance during gaming as well as your gaming experience by improving system performance in several ways such as heat generation control.

Characteristics of each GOS feature

  • Optimized heat generation during gaming
    The app can reduce and optimise heat generation by adjusting system performance if heat is generated during gaming.
  • Device optimization during gaming
    If a game freeze occurs, the app will start optimising performance during gaming by changing the resolution setting. In doing so, your device will consume less memory and less power, and achieve more stable performance compared to other devices.
  • CPU/GPU optimization during gaming
    The app will optimise performance by adjusting the current CPU/GPU max clock.
  • App management during gaming
    Using the indexes of the installed game (e.g., resolution, FPS, CPU/GPU clock, and heat generation), the app will determine optimised values for the relevant game.

The Problem

While GOS is supposed to be running during gaming sessions, due to Samsungโ€™s poor implementations, it runs all the time. Thus, affects performance, severe battery drain, and also causes touchscreen issues on several Samsung Galaxy devices.

Donโ€™t take my word for it. Here is what the community has to say about it:

Samsung performance with Game Optimizing Service Off vs On

Users at Clien Net forums tested Geekbench results on a number of Samsung smartphones ranging from Galaxy S10 to Galaxy S22 with and without Game Optimizing Service. (GOS)

Here is what they found:

Geekbench results for Galaxy S10 to Galaxy S22 with and without GOS
Geekbench results for Galaxy S10 to Galaxy S22 with and without Game Optimizing Service

Another user tested the scores for Gaming Optimizing Services turned off vs turned on on their Galaxy Z Flip and had to say the following:

Not only benchmark scores are higher but the whole UI feels way snappier and smoother. Iโ€™ve used my phone today mainly outdoors in a 86ยฐ sunny day and I havenโ€™t noticed any excessive heat or abnormal battery drain.

Moreover, disabling game optimizing service also uses less RAM at idle.

Samsung touchscreen response with Game Optimizing Service Off vs On

According to this comment, GOS is also decreasing the displayed resolution. The comments below that say that touch response times seem to suffer as well.

Finally, disabling GOS may potentially fix most to all touchscreen response issues and ghost touch issues on your Samsung Galaxy device.

It certainly fixed touchscreen issues for me on the Galaxy S21 FE device (Exynos variants) while charging.

The touchscreen response issue while charging smartphones is rampant across Samsung Galaxy devices.

Here is a list of users facing this issue:

The Solution: Uninstall/Disable Game Optimizing Service (GOS)

You can either disable or completely uninstall the Game Optimizing Service (GOS) from your Samsung Galaxy device.

There are two methods to disable/uninstall any app from your Android phone. Method 1 includes ADB via tools like ADB App Control or Universal Android Debloater tool by 0x192. The second method is using an app called FreezeYou!

Method 1: Disable GameOptimizingService via ADB App Control

  1. Backup your data before you proceed. If you uninstall any important app, you may lose some functionality. Luckily, you can always restore the app.
  2. First, Enableย Developer Optionsย on your smartphone. To do so, go to Settings > About phone. Tap on the Build Number 7 times.
  3. Turn onย USB Debuggingย from the developer panel. Go to Settings > Developer Options > Check USB debugging. Also, check OEM Unlocking, just in case.
  4. For some devices, you may need to disconnect from any OEM accounts under settings. (when you delete an OEM account package it may lock you on the lockscreen) You can skip this and proceed.
  5. Install ADB on Windows or MacOS or Linux.
  6. Now, go to where you have setup ADB and Fastboot on your PC.
  7. Download and install ADB App Control or Universal Android Debloater tool on your Windows, MacOS, or Linux operating systems.
  8. Install or extract the ADB control app inside the ADB folder.
  9. Connect your phone to PC. Use USB-C to USB-A cable. Type C to Type C wonโ€™t work.
  10. Allow ADB access.
  11. Launch the ADB App Control EXE file.
  12. It should automatically recognize your device and list all the apps from your phone.
  13. Search for โ€œgameโ€
  14. In this case, the GameOptimizingService will be listed.
  15. Select the GameOptimizingService package.
  16. Select Disable at the bottom right corner.
  17. Select Apply.
  18. Once the app is disabled, reboot the phone.
Game Optimizing Service Disable ADB AppControl

Visual tutorial on how to remove bloatware using Universal Android Debloater:

Method 2: Uninstall System Apps with ADB commands

This method can be used to uninstall or remove any Bloatware or package from the system. We are going to use the old school ADB command to access ADB Shell on Android device using USB Debugging and uninstall system packages.

  • Backup all of your data before you proceed. If you uninstall any important app, you may lose some functionality.
  • First, Enable Developer Options on your smartphone. To do so, go to Settings > About phone. Tap on the Build Number 7 times.
  • Turn on USB Debugging from the developer panel. Go to Settings > Developer Options > Check USB debugging. Also, check OEM Unlocking, just in case.
  • Install ADB on Windows or MacOS or Linux.
  • Now, go to the folder where you have setup ADB and Fastboot on your PC.
  • Connect your phone to PC. Allow ADB access.
  • Open a command prompt or terminal window inside the ADB folder. Type cmd in the address bar and press enter.
  • Type adb devices in the command prompt or terminal to see if the connection is successful. It should list the device.

adb devices

  • Once you see the device ID, your phone has established a successful connection and is ready to proceed.
  • Open ADB shell. Enter the following command:

adb shell

  • You can list the Game packages using the following query:

pm list packages game

Note for ADB Mac OS and Linux:

Use the following adb commands

./adb devices

./adb shell

Note 1: Here, you can modify the string to get a list of all packages like

pm list packages | grep '<App or Package Name>' 

Just replace <App or Package Name with the actual name>. For instance, to know all the Samsung packages enter:

pm list packages | grep 'game'

Note 2: You can also use apps like Package List to get the exact package name for various GOS services.

  • To know the package names for Bixby, enter the following command:

pm list packages game

  • You will get a list of packages related to GOS.
  • Uninstall each and every GOS package using the string: pm uninstall -k โ€“user 0 <package name>
  • Ideally, the list would be:

pm uninstall -k --user 0 com.samsung.android.game.gos

How to uninstall system apps from any Android device using cmd - adb  shell
  • Reboot the device once.

Method 3: FreezeYou! GameOptimizingService

FreezeYou! GameOptimizingService Screenshot
FreezeYou! GameOptimizingService Screenshot

Join AndroidSage Telegram Channel.

Follow and Subscribe


Sarang Avatar

One response


  1. Aykut Avatar
    Aykut

    It is never deleted with ADB. samsung note20 does not allow this. I removed all bloatware but GOS never gets deleted

Leave a Reply