Skip to content

Instantly share code, notes, and snippets.

@wulrahman
Forked from Biswa96/Remove_MIUI_Bloatware.CMD
Last active June 11, 2021 15:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wulrahman/b1d0712c1695aa65385774e6254b343f to your computer and use it in GitHub Desktop.
Save wulrahman/b1d0712c1695aa65385774e6254b343f to your computer and use it in GitHub Desktop.
Remove bloatware applications from MIUI ROM in Xiaomi phones
cd “adb file location”
./adb kill-shell;
./adb devices;
./adb shell;
pause
set -A command amazon.appmanager android.browser android.chrome android.email android.thememanager android.wallpaper.livepicker facebook.services facebook.system facebook.appmanager google.android.apps.docs google.android.apps.maps google.android.apps.photos google.android.apps.tachyon google.android.feedback google.android.gm google.android.googlequicksearchbox google.android.marvin.talkback google.android.music google.android.syncadapters.calendar google.android.syncadapters.contacts google.android.talk google.android.tts google.android.videos google.android.youtube mfashiongallery.emag mi.android.globalpersonalassistant mi.dlabs.vr mi.globalTrendNews mi.global.bbs mi.global.shop mi.webkit.core micredit.in milink.service mipay.wallet.id mipay.wallet.in miui.analytics miui.android.fashiongallery miui.bugreport miui.cloudbackup miui.cloudservice miui.cloudservice.sysbase miui.micloudsync miui.hybrid miui.hybrid.accessory miui.klo.bugreport miui.miservice miui.miwallpaper miui.msa.global miui.player miui.providers.weather miui.screenrecorder miui.translationservice miui.translation.kingsoft miui.translation.xmcloud miui.translation.youdao miui.touchassistant miui.userguide miui.videoplayer miui.virtualsim miui.weather2 miui.yellowpage netflix.partner.activation swiftkey.languageprovider swiftkey.swiftkeyconfigurator xiaomi.account xiaomi.discover xiaomi.glgm xiaomi.joyose xiaomi.location.fused xiaomi.micloud.sdk xiaomi.midrop xiaomi.mipicks xiaomi.miplay_client xiaomi.mirecycl xiaomi.oversea.ecom xiaomi.payment xiaomi.providers.appindex xiaomi.xmsf
pause
for i in ${command[*]}
do
pm uninstall com.$i
pm uninstall --user 0 com.$i
done