Last active
October 9, 2019 23:22
-
-
Save marcorichetta/2a56b64c3841c4dec4c9417e43ffb1ed to your computer and use it in GitHub Desktop.
Script para desinstalar system apps innecesarias
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pm uninstall -k --user 0 com.gameloft.android.gdc && # Claro Juegos | |
pm uninstall -k --user 0 com.portal && # Ideas Claro | |
pm uninstall -k --user 0 com.naranya.claroapps && # Claro apps | |
pm uninstall -k --user 0 com.claroColombia.contenedor && # Alguna mierda de Claro | |
#### | |
pm uninstall -k --user 0 com.lge.sizechangable.weather && # Stock weather App | |
pm uninstall -k --user 0 com.lge.sizechangable.weather.platform && # Support for above | |
pm uninstall -k --user 0 com.lge.sizechangable.weather.theme.optimus && # Support for above | |
pm uninstall -k --user 0 com.lge.sizechangable.musicwidget.widget && # Music widget | |
pm uninstall -k --user 0 com.lge.theme.white && # White theme (just delete themes you're not gonna use) | |
pm uninstall -k --user 0 com.lge.theme.highcontrast && # High Contrast theme | |
pm uninstall -k --user 0 com.lge.theme.launcher2.theme.optimus && # LG Launcher 'Home' theme | |
pm uninstall -k --user 0 com.lge.launcher3 && # LG Launcher 'Home' | |
pm uninstall -k --user 0 com.android.calendar && # This is the LG Calendar app by default, not the Google Calendar | |
pm uninstall -k --user 0 com.android.mms && # The same as above but for messages | |
pm uninstall -k --user 0 com.lge.clock && # LG Clock | |
pm uninstall -k --user 0 com.lge.music && # LG Music | |
pm uninstall -k --user 0 com.lge.task && # LG Tasks | |
pm uninstall -k --user 0 com.lge.qmemoplus && # LG QuickMemo+ - This disable Screen Capture button | |
pm uninstall -k --user 0 com.lge.email && # email | |
pm uninstall -k --user 0 com.lge.qhelp.application && # Qhelp | |
pm uninstall -k --user 0 com.lge.fmradio && # FM Radio App | |
pm uninstall -k --user 0 com.crucialsoft.fido.client && # Some LG proprietary app - No lost functionality | |
pm uninstall -k --user 0 com.lge.gallery.collagewallpaper && # LG Collage Wallpaper | |
pm uninstall -k --user 0 com.lge.videostudio && # LG Video Editor | |
pm uninstall -k --user 0 com.lge.vrplayer && # VR player (why?) | |
pm uninstall -k --user 0 com.lge.gallery.vr.wallpaper && # VR wallpapers (wut?) | |
pm uninstall -k --user 0 com.lge.video.vr.wallpaper && # | |
pm uninstall -k --user 0 com.lge.easyhome && # LG easy home | |
pm uninstall -k --user 0 com.lge.friendsmanager && # Friends manager app to control ALL your other LG devices (does anyone use this?) | |
pm uninstall -k --user 0 com.lge.ime && # LG keyboard | |
pm uninstall -k --user 0 com.lge.ime.solution.handwriting # Related to above | |
pm uninstall -k --user 0 com.lge.snappage && # That's the app that let's you capture long screenshots. | |
#### | |
pm uninstall -k --user 0 com.rsupport.rs.activity.lge.allinone && # Remote Call | |
#### | |
pm uninstall -k --user 0 com.android.chrome && # Chrome | |
pm uninstall -k --user 0 com.google.android.apps.tachyon && # Google Duo | |
pm uninstall -k --user 0 com.google.android.videos && # Google Video and TV | |
pm uninstall -k --user 0 com.google.android.music && # Google Music | |
pm uninstall -k --user 0 com.google.android.apps.docs.editors.sheets && # Google Sheets | |
pm uninstall -k --user 0 com.google.android.apps.docs.editors.slides && # Google Slides | |
pm uninstall -k --user 0 com.google.android.apps.docs.editors.docs && # Google Docs | |
#### | |
pm uninstall -k --user 0 com.facebook.katana && # Facebook | |
pm uninstall -k --user 0 com.facebook.system && # Facebook spying system | |
pm uninstall -k --user 0 com.facebook.appmanager # Facebook like.. background uploader... uninstall it |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Step by step guide to debloat LG G6
On LG: Enable USB Debugging and connect to PC via USB cable
On PC: Download android platform tools for your OS
On PC: In Terminal: Go to the platform tools folder - cd c:/Downloads/platform-tools (example path)
On PC: In Terminal: Run ./adb.exe devices
You will see that the system is starting the ADB daemon. If this is your first time running ADB, you will see a prompt on your phone asking you to authorize a connection with the computer. Grant it.
Now re-run ./adb.exe devices. The terminal will print the serial number of your device. If so, then you’re ready to move on.
In terminal run the shell - ./adb.exe shell