Last active
March 24, 2021 08:20
-
-
Save hurelhuyag/7dcfba5fccd58d657b04abe13f3be7d4 to your computer and use it in GitHub Desktop.
disabling LG bloatware apps
This file contains hidden or 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
#!/bin/bash | |
# ref: https://www.xda-developers.com/disable-system-app-bloatware-android/ | |
alias adb=/home/user/android-sdk-linux/platform-tools/adb | |
adb shell pm disable-user --user 0 com.lguplus.mobile.cs #(U+ Customer Center) | |
adb shell pm disable-user --user 0 com.lguplus.appstore | |
adb shell pm disable-user --user 0 com.lge.lgpay | |
adb shell pm disable-user --user 0 com.lge.tdmb #(DMB TV) | |
adb shell pm disable-user --user 0 com.lge.lgaccount | |
adb shell pm disable-user --user 0 com.lge.lgassistant #(QVoice) | |
adb shell pm disable-user --user 0 com.lge.qlens | |
adb shell pm disable-user --user 0 com.lge.iuc #(QLink) | |
adb shell pm disable-user --user 0 com.lge.lms #(QLink Service) | |
adb shell pm disable-user --user 0 com.lge.myplace | |
adb shell pm disable-user --user 0 com.lge.myplace.engine | |
adb shell pm disable-user --user 0 com.lge.bnr #(lg mobile switch) | |
adb shell pm disable-user --user 0 com.lge.bnr.launcher #(lg mobile switch launcher) | |
adb shell pm disable-user --user 0 com.lge.lgmapui | |
adb shell pm disable-user --user 0 com.skt.skaf.OA00018282 #(ONE store service) | |
adb shell pm disable-user --user 0 com.uplus.oemsearch | |
adb shell pm disable-user --user 0 com.cnas.terms | |
adb shell pm disable-user --user 0 com.cnas.main | |
adb shell pm disable-user --user 0 com.cnas.service | |
adb shell pm disable-user --user 0 com.lguplus.pushagent | |
# LG Keyboard, Please install another keyboard before execute those command | |
adb shell pm disable-user --user 0 com.lge.ime #(LG Keyboard) | |
adb shell pm disable-user --user 0 com.lge.ime.solution.tshanja #(Hanja) | |
adb shell pm disable-user --user 0 com.lge.ime.solution.handwriting | |
adb shell pm disable-user --user 0 com.lge.ime.solution.text #(Word Suggestions) | |
adb shell pm disable-user --user 0 com.lge.twophone # KT Two phone | |
#./adb shell pm enable my.app.package |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment