Skip to content

Instantly share code, notes, and snippets.

@alierdogan7
Created July 24, 2026 03:45
Show Gist options
  • Select an option

  • Save alierdogan7/caa896b7347a76fe692b1bde50948227 to your computer and use it in GitHub Desktop.

Select an option

Save alierdogan7/caa896b7347a76fe692b1bde50948227 to your computer and use it in GitHub Desktop.
Android_Unsmart_Commands.md

################################################################################

ADB (Android Debugger Tools)

adb
adb devices

################################################################################

Google Play

# Google Play'i tamamen silmek bazi onemli uygulamalarin guncellenmesini engelliyor
# O yuzden Ayarlar->Baglantilar->Veri Kullanimi->Uygulamalar icin izin verilen aglar->Google Play
# Yalnizca Wi-Fi izin ver denilir ise mobil veri ile google playin calismasi iptal edilmis olur

# suspend ile Google Play gorunur halde ancak gri buton ile acilamaz hale geliyor
adb shell cmd package suspend com.android.vending

adb shell pm hide com.android.vending
adb shell pm disable --user 0 com.android.vending
adb shell pm disable com.android.vending
adb shell pm disable-user --user 0 com.android.vending

adb shell am force-stop com.android.vending
adb shell cmd appops set com.android.vending RUN_ANY_IN_BACKGROUND ignore
adb shell cmd appops set com.android.vending RUN_IN_BACKGROUND ignore
adb shell pm revoke com.android.vending android.permission.INTERNET
adb shell pm disable-user --user 0 com.android.packageinstaller

################################################################################

Google Chrome

adb shell pm uninstall --user 0 com.android.chrome

################################################################################

Google Arama Kutusu

adb shell pm disable-user --user 0 com.google.android.googlequicksearchbox
adb shell pm uninstall --user 0 com.google.android.googlequicksearchbox

################################################################################

Youtube

adb shell pm uninstall --user 0 com.google.android.apps.youtube.music
adb shell pm uninstall --user 0 com.google.android.video
adb shell pm uninstall --user 0 com.google.android.videos
adb shell pm uninstall --user 0 com.google.android.youtube

################################################################################

Google Mobile Services (GMS)

(Bu kapatilirsa bircok uygulama calismayi durduruyor - TAVSIYE EDILMEZ)

adb shell pm disable-user --user 0 com.google.android.gms

################################################################################

Xiaomi Gereksiz Uygulamalar

adb shell pm uninstall --user 0 com.mi.globalbrowser
adb shell pm uninstall --user 0 com.mi.globalminusscreen
adb shell pm uninstall --user 0 com.miui.videoplayer
adb shell pm uninstall --user 0 com.xiaomi.mipicks
adb shell pm uninstall  com.xiaomi.mipicks

################################################################################

Samsung Apps Store

adb shell pm uninstall --user 0 com.sec.android.app.samsungapps

################################################################################

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