Related
So, everyone remembers the VZW Samsung Galaxy Note 2 (i605)? I have one I got second hand that had already taken the fatal-final-OTA update that permalocked the bootloader down.. however, I have still rooted and installed Safestrap recovery and damn-near fully customised and tweaked it to my liking(custom boot animation, room slots active, etc)..Well, what about a possible Safestrap-style recovery that could run without root permissions by running some sort of workaround-script?....or would root access still be inevitably needed? Perhaps have the Safestrap recovery create a fully-functioning isolated with admin privileges, something similar to the Island Sandbox Experiment app?
I don't think it would be possible, bootloader's have become super secure in the past 4 years.
Sent from my Moto E4 using XDA Labs
What about possibly using ADB to manually install a superuser APK file and also using ADB commands like 'pm grant ....... WRITE_SECURE_SETTINGS' to manually enable the permissions and privileges required for installing an SU binary?
That's a good idea if it works. I was able to remove all the Verizon apps from the phone using adb commands.
chrislind said:
That's a good idea if it works. I was able to remove all the Verizon apps from the phone using adb commands.
Click to expand...
Click to collapse
You completely removed the Verizon apps and not just disabled them?
What adb commands did you use please?
Thanks.
adb shell pm uninstall -k --user 0 com.motorola.setupwizard.phoneservice
adb shell pm uninstall -k --user 0 com.vzw.hss.myverizon
adb shell pm uninstall -k --user 0 com.verizon.messaging.vzmsgs
adb shell pm uninstall -k --user 0 com.motorola.vzw.cloudsetup
adb shell pm uninstall -k --user 0 com.vzw.qualitydatalog
adb shell pm uninstall -k --user 0 com.verizon.mips.services
adb shell pm uninstall -k --user 0 com.motorola.vzw.settings.extensions
adb shell pm uninstall -k --user 0 com.vznavigator.Generic
adb shell pm uninstall -k --user 0 com.motorola.vzw.provider
adb shell pm uninstall -k --user 0 com.gotv.nflgamecenter.us.lite
adb shell pm uninstall -k --user 0 com.motorola.email
adb shell pm uninstall -k --user 0 com.vcast.mediamanager
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon
adb shell pm uninstall -k --user 0 com.google.android.videos
adb shell pm uninstall -k --user 0 com.google.android.music
adb shell pm uninstall -k --user 0 com.google.android.apps.docs
adb shell pm uninstall -k --user 0 com.lenovo.FileBrowser2
chrislind said:
adb shell pm uninstall -k --user 0 com.motorola.setupwizard.phoneservice
adb shell pm uninstall -k --user 0 com.vzw.hss.myverizon...
Click to expand...
Click to collapse
I believe that this procedure actually only disables the apps, although it appears that they are uninstalled. It is my understanding that a factory reset will re-enable/re-install all the apps. Read about half-way down this page.
mn1968 said:
I believe that this procedure actually only disables the apps, although it appears that they are uninstalled. It is my understanding that a factory reset will re-enable/re-install all the apps. Read about half-way down this page.
Click to expand...
Click to collapse
100% correct.
Can i delete some system apps some are just trash from my carrier. Maybe throught ADB? I dont have root .My phone is LG K8 (K350nds)
koloxd said:
Can i delete some system apps some are just trash from my carrier. Maybe throught ADB? I dont have root .My phone is LG K8 (K350nds)
Click to expand...
Click to collapse
Yes, you can.
You can uninstall an app with the following ADB command:
Code:
adb shell pm uninstall -k --user 0 PACKAGE_NAME
Or disable an app with this command:
Code:
adb shell pm disable-user --user 0 PACKAGE_NAME
PS: PACKAGE_NAME is the name of the package; for example: com.google.android.apps.photos
Regards
This is a very basic script I made as I noticed that even after successfully rooting, I could not uninstall System Apps with apps like Lucky Patcher or System App Remover.
Code:
@ECHO OFF
ECHO \................./
ECHO \..Bloat Remover../
ECHO \................./
ECHO SAMS CLUB
adb shell pm uninstall -k --user 0 com.rfi.sams.android
ECHO Walmart
adb shell pm uninstall -k --user 0 com.walmart.android
ECHO FM Radio
adb shell pm uninstall -k --user 0 com.android.fmradio
ECHO Grocery
adb shell pm uninstall -k --user 0 com.walmart.grocery
ECHO VUDU
adb shell pm uninstall -k --user 0 air.com.vudu.air.DownloaderTablet
ECHO Walmart EBooks
adb shell pm uninstall -k --user 0 com.kobobooks.android.walmart
ECHO GPlay Music
adb shell pm uninstall -k --user 0 com.google.android.music
ECHO Auto Dialer Example App (pointless)
adb shell pm uninstall -k --user 0 com.example
ECHO Call Log Backup/Restore
adb shell pm uninstall -k --user 0 com.android.calllogbackup
ECHO Call Management
adb shell pm uninstall -k --user 0 com.android.server.telecom
ECHO Carrier Config
adb shell pm uninstall -k --user 0 com.android.carrierconfig
ECHO SMS Push
adb shell pm uninstall -k --user 0 com.android.smspush
ECHO Call Recorder
adb shell pm uninstall -k --user 0 com.mediatek.callrecorder
ECHO Contacts
adb shell pm uninstall -k --user 0 com.android.contacts
adb shell pm uninstall -k --user 0 com.android.providers.contacts
adb shell pm uninstall -k --user 0 com.google.android.syncadapters.contacts
ECHO Duo
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon
ECHO GPlay Movies
adb shell pm uninstall -k --user 0 com.google.android.videos
ECHO Text 2 Speech
adb shell pm uninstall -k --user 0 com.google.android.tts
ECHO Keep Notes
adb shell pm uninstall -k --user 0 com.google.android.keep
ECHO Maps
adb shell pm uninstall -k --user 0 com.google.android.apps.maps
ECHO Mobile Data
adb shell pm uninstall -k --user 0 com.android.phone
adb shell pm uninstall -k --user 0 com.android.providers.telephony
ECHO MMS Service
adb shell pm uninstall -k --user 0 com.android.mms.service
ECHO SIM Data
adb shell pm uninstall -k --user 0 com.android.simappdialog
adb shell pm uninstall -k --user 0 com.android.stk
adb shell pm uninstall -k --user 0 com.mediateksimprocessor
adb shell pm uninstall -k --user 0 com.mtk.telephony
ECHO Sound Recorder
adb shell pm uninstall -k --user 0 com.android.soundrecorder
ECHO Walmart Nav Bar Button App
adb shell pm uninstall -k --user 0 com.mid.kubedemo
ECHO Fix NavBar back to Stock Android
adb shell settings put secure sysui_nav_bar "space,back;home;recent,space"
ECHO Done!
How to Use
This tutorial is assuming you already have ADB on your system with USB Debugging enabled
1.) Root your device using one of the provided methods in this section
2.) Once Rooting is complete, plug your device into your PC
3.) Open Notepad, copy the code above and paste it.
4.) Save it as BloatRemover.bat (or anything you want)
5.) Double click it when saved and it will automatically remove all the walmart stuff from the tablet! Should work on both the 7 and 10 inch tablets released on Black Friday.
Script 2 Edit Update @CyberstormFox for the info on the walmart logo nav bar button app...
@ragtop429 for the NavBar Reset ADB Code to remove the walmart logo button (although your code was slightly wrong )
Added to the script of everything pertaining to phone operation that was disabled anyway and Text Messaging.
Additional bloat
I also recommend adding the app com.mid.kubedemo.
It's the app that's launched when you hit the Walmart logo embedded in the left side of the navbar.
If anyone can figure out how to remove the icon itself, that would be nice.
It's still there, but now does nothing.
CyberstormFox said:
I also recommend adding the app com.mid.kubedemo.
It's the app that's launched when you hit the Walmart logo embedded in the left side of the navbar.
If anyone can figure out how to remove the icon itself, that would be nice.
It's still there, but now does nothing.
Click to expand...
Click to collapse
yo, thanks for letting me know which one it is. I've actually gotta update this script anyway as I've added everything that pertains to using your phone and text messaging to the debloater as you can't put a sim card in these and its all "disabled" taking up space anyway. I'll edit it right now
KaptinBoxxi said:
This is a very basic script I made as I noticed that even after successfully rooting, I could not uninstall System Apps with apps like Lucky Patcher or System App Remover.
Code:
@ECHO OFF
ECHO \................./
ECHO \..Bloat Remover../
ECHO \................./
ECHO SAMS CLUB
adb shell pm uninstall -k --user 0 com.rfi.sams.android
ECHO Walmart
adb shell pm uninstall -k --user 0 com.walmart.android
ECHO FM Radio
adb shell pm uninstall -k --user 0 com.android.fmradio
ECHO Grocery
adb shell pm uninstall -k --user 0 com.walmart.grocery
ECHO VUDU
adb shell pm uninstall -k --user 0 air.com.vudu.air.DownloaderTablet
ECHO Walmart EBooks
adb shell pm uninstall -k --user 0 com.kobobooks.android.walmart
ECHO GPlay Music
adb shell pm uninstall -k --user 0 com.google.android.music
ECHO Auto Dialer Example App (pointless)
adb shell pm uninstall -k --user 0 com.example
ECHO Call Log Backup/Restore
adb shell pm uninstall -k --user 0 com.android.calllogbackup
ECHO Call Management
adb shell pm uninstall -k --user 0 com.android.server.telecom
ECHO Carrier Config
adb shell pm uninstall -k --user 0 com.android.carrierconfig
ECHO SMS Push
adb shell pm uninstall -k --user 0 com.android.smspush
ECHO Call Recorder
adb shell pm uninstall -k --user 0 com.mediatek.callrecorder
ECHO Contacts
adb shell pm uninstall -k --user 0 com.android.contacts
adb shell pm uninstall -k --user 0 com.android.providers.contacts
adb shell pm uninstall -k --user 0 com.google.android.syncadapters.contacts
ECHO Duo
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon
ECHO GPlay Movies
adb shell pm uninstall -k --user 0 com.google.android.videos
ECHO Text 2 Speech
adb shell pm uninstall -k --user 0 com.google.android.tts
ECHO Keep Notes
adb shell pm uninstall -k --user 0 com.google.android.keep
ECHO Maps
adb shell pm uninstall -k --user 0 com.google.android.apps.maps
ECHO Mobile Data
adb shell pm uninstall -k --user 0 com.android.phone
adb shell pm uninstall -k --user 0 com.android.providers.telephony
ECHO MMS Service
adb shell pm uninstall -k --user 0 com.android.mms.service
ECHO SIM Data
adb shell pm uninstall -k --user 0 com.android.simappdialog
adb shell pm uninstall -k --user 0 com.android.stk
adb shell pm uninstall -k --user 0 com.mediateksimprocessor
adb shell pm uninstall -k --user 0 com.mtk.telephony
ECHO Sound Recorder
adb shell pm uninstall -k --user 0 com.android.soundrecorder
ECHO Walmart Nav Bar Button App
adb shell pm uninstall -k --user 0 com.mid.kubedemo
ECHO Fix NavBar back to Stock Android
adb shell settings put secure sysui_nav_bar "space,back;home;recent,space"
ECHO Done!
How to Use
This tutorial is assuming you already have ADB on your system with USB Debugging enabled
1.) Root your device using one of the provided methods in this section
2.) Once Rooting is complete, plug your device into your PC
3.) Open Notepad, copy the code above and paste it.
4.) Save it as BloatRemover.bat (or anything you want)
5.) Double click it when saved and it will automatically remove all the walmart stuff from the tablet! Should work on both the 7 and 10 inch tablets released on Black Friday.
Script 2 Edit Update @CyberstormFox for the info on the walmart logo nav bar button app...
@ragtop429 for the NavBar Reset ADB Code to remove the walmart logo button (although your code was slightly wrong )
Added to the script of everything pertaining to phone operation that was disabled anyway and Text Messaging.
Click to expand...
Click to collapse
Just wanted to add this.
You can do a temp root using mtk-su
Guide HERE
If you get the following error when you run the batch file
Code:
Fix NavBar back to Stock Android
/system/bin/sh: home: not found
/system/bin/sh: recent,space: not found
Try manually going to ADB Shell and typing the code there manually
In this case:
Code:
adb shell
settings put secure sysui_nav_bar "space,back;home;recent,space"
sm_x said:
Just wanted to add this.
You can do a temp root using mtk-su
Guide HERE
If you get the following error when you run the batch file
Code:
Fix NavBar back to Stock Android
/system/bin/sh: home: not found
/system/bin/sh: recent,space: not found
Try manually going to ADB Shell and typing the code there manually
In this case:
Code:
adb shell
settings put secure sysui_nav_bar "space,back;home;recent,space"
Click to expand...
Click to collapse
I had actually fixed all this and totally forgot about this post to edit it
Root is not needed to change the navbar.
just in case anyone is in my same boat and doesn't have adb installed as a system app (or whatever you call it such that you can access adb from any directory on your computer) and you have to actually be in the platform_tools directory to use adb commands, make sure you copy this bat file to said directory or it won't do anything. once you move it there, it'll work fine.
also... for some reason the nav bar edit didn't work from the bat file. i had to do that one manually.
anyway, thanks for this!
KaptinBoxxi said:
Just wanted to add this.
You can do a temp root using mtk-su
Guide HERE
If you get the following error when you run the batch file
Try manually going to ADB Shell and typing the code there manually
In this case:
I had actually fixed all this and totally forgot about this post to edit it
Click to expand...
Click to collapse
If that doesn't work try:
adb shell settings put secure sysui_nav_bar 'space[1.5WC],back;home;recent,space[1.5WC]'
Root access not needed to remove walmart button.
Quotes
Looks like putting single quotes inside the double quotes works (and should work in the bat file):
Code:
C:\otherApps\platform-tools>adb shell settings put secure sysui_nav_bar "space,back;home;recent,space"
/system/bin/sh: home: not found
/system/bin/sh: recent,space: not found
C:\otherApps\platform-tools>adb shell settings put secure sysui_nav_bar "'space,back;home;recent,space'"
C:\otherApps\platform-tools>adb shell settings get secure sysui_nav_bar
space,back;home;recent,space
The problem is that semicolon is the command delimiter for a 'sh' shell, so it splits the string into three separate commands, but "home" and "recent,space" are not valid. By including the single quotes inside the double, the string gets passed to the shell as a single argument.
Thanks for the script - it otherwise worked well!
N6ML said:
Looks like putting single quotes inside the double quotes works (and should work in the bat file):
Code:
C:\otherApps\platform-tools>adb shell settings put secure sysui_nav_bar "space,back;home;recent,space"
/system/bin/sh: home: not found
/system/bin/sh: recent,space: not found
C:\otherApps\platform-tools>adb shell settings put secure sysui_nav_bar "'space,back;home;recent,space'"
C:\otherApps\platform-tools>adb shell settings get secure sysui_nav_bar
space,back;home;recent,space
The problem is that semicolon is the command delimiter for a 'sh' shell, so it splits the string into three separate commands, but "home" and "recent,space" are not valid. By including the single quotes inside the double, the string gets passed to the shell as a single argument.
Thanks for the script - it otherwise worked well!
Click to expand...
Click to collapse
For everyone with the new 2020 tablets. This script will not work.
I've tried it. You can use adb tools to remove apps though so just do them individually since the tablet no longer have the same exact apps. It really doesn't contain that much bloat. The navigation bar is not easily modified through adb anymore due to android 10. Walmart allows for a two button navigation and a gesture. However, if you change your launcher you cannot use gestures.
The two apps that control the navigation bar are:
com.android.internal.systemui.navbar.twobutton - This one has only two buttons (No walmart button)
com.androidinternal.systemus.navbar.threebutton - This one has three buttons plus the walmart button so a total of 4
I'm going to see if I can install another nav bar to get the stock android bar, but I'm not sure which one to get yet.
szymonurai said:
For everyone with the new 2020 tablets. This script will not work.
I've tried it. You can use adb tools to remove apps though so just do them individually since the tablet no longer have the same exact apps. It really doesn't contain that much bloat. The navigation bar is not easily modified through adb anymore due to android 10. Walmart allows for a two button navigation and a gesture. However, if you change your launcher you cannot use gestures.
The two apps that control the navigation bar are:
com.android.internal.systemui.navbar.twobutton - This one has only two buttons (No walmart button)
com.androidinternal.systemus.navbar.threebutton - This one has three buttons plus the walmart button so a total of 4
I'm going to see if I can install another nav bar to get the stock android bar, but I'm not sure which one to get yet.
Click to expand...
Click to collapse
Any update on this? Did you find a nav bar that worked, with no Walmart button?
Not sure if anyone did this yet but since it looks like Android removed the ability to mess with the nav bar in Android 10, I used the code:
adb shell cmd overlay enable com.android.internal.systemui.navbar.gestural
To enable gestures, which removes the Walmart icon and then I used
adb shell settings put global policy_control immersive.navigation=*
to hide the gesture bar. Gestures still work just fine as of now.
afxtwn said:
Not sure if anyone did this yet but since it looks like Android removed the ability to mess with the nav bar in Android 10, I used the code:
adb shell cmd overlay enable com.android.internal.systemui.navbar.gestural
To enable gestures, which removes the Walmart icon and then I used
adb shell settings put global policy_control immersive.navigation=*
to hide the gesture bar. Gestures still work just fine as of now.
Click to expand...
Click to collapse
This didn't work me fully. everything works from home screen but in apps can't pull up from bottom for app switcher.
Hello guys, i have one problem, with every update my phone battery life is getting worse and worse... im on MIUI Global 11.0.6 (QFJEUXM). I have some screenshots from a test that i did. I really dont know what is problem but 5h to MAX 6h SoT is what i can get, and before 2 or 3 updates i had around 8h SoT. Only thing i didnt do is Factory Reset, i just want to hear if anyone else has similar problem. Im noob i have never root phones and stuff like that i just use phone as i bought it. Thanks for your replies. I dont think im able to post Screenshots but Android System is taking 20 - 30% of Battery.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
This is the same for everyone. Xiaomi is not optimizing its updates for Mi9T after MIUI 10 rolled out.
The reason why you're getting low SoTs is because a lot of applications are running in the background and the only way to get authority to restrict them is by rooting your phone.
I tried all (almost) the tweaks available on the internet before i decided to root my phone, and I'm never going back to an unrooted Mi9T.
sudhanshugrover said:
This is the same for everyone. Xiaomi is not optimizing its updates for Mi9T after MIUI 10 rolled out.
The reason why you're getting low SoTs is because a lot of applications are running in the background and the only way to get authority to restrict them is by rooting your phone.
I tried all (almost) the tweaks available on the internet before i decided to root my phone, and I'm never going back to an unrooted Mi9T.
Click to expand...
Click to collapse
I can't confirm that. I had 8-9.5 hours SOT on Miui 10 and Miui 11.
Now I am on Pixel Experience Plus (a custom ROM) and have 8-8.5 hours SOT.
my device also have worse battery and performance on miui 11 i regret that i got xiaomi phone again after poco
EDIT : i did full rest after the update i said maybe it will fix my issues but this is always how miui roms its full of bugs like some beginner dev build a rom i am on global rom BTW
11.0.6.0 eea rulls
2 days on battery cca 10h sot, 3 days on batt cca 8h sot
sudhanshugrover said:
This is the same for everyone. Xiaomi is not optimizing its updates for Mi9T after MIUI 10 rolled out.
The reason why you're getting low SoTs is because a lot of applications are running in the background and the only way to get authority to restrict them is by rooting your phone.
I tried all (almost) the tweaks available on the internet before i decided to root my phone, and I'm never going back to an unrooted Mi9T.
Click to expand...
Click to collapse
Yea, i understand, dont know will miui 12 fix this problem, kinda want to wait for it. And if problem is not solved i guess only solution is root but i have 0 idea how to do it i guess tutorials are my friends ???
prvi357 said:
Hello guys, i have one problem, with every update my phone battery life is getting worse and worse... im on MIUI Global 11.0.6 (QFJEUXM). I have some screenshots from a test that i did. I really dont know what is problem but 5h to MAX 6h SoT is what i can get, and before 2 or 3 updates i had around 8h SoT. Only thing i didnt do is Factory Reset, i just want to hear if anyone else has similar problem. Im noob i have never root phones and stuff like that i just use phone as i bought it. Thanks for your replies. I dont think im able to post Screenshots but Android System is taking 20 - 30% of Battery.
Click to expand...
Click to collapse
I don't see your pictures but the way you described it, sounds to me like you have a problem like people on reddit that found a solution. I will send you a link via pm and you can try it if you want
I think the battery drain problem is on android 10. I remember when I was on miui 11 android 9 and has a better battery life. The only "solution" posted on mi community by the developers is to factory reset and it does for nothing
Update*
I just got MIUI 12, i will do test with miui optimization ON and OFF, i have done "hotfix" that JohnnyxS sent me. And i think that "hotfix" is actualy working as i had 50mins SoT and battey was on 89% after i did those steps from reddit post (then i updated to MIUI 12) and now need to do it all over again
prvi357 said:
I just got MIUI 12, i will do test with miui optimization ON and OFF, i have done "hotfix" that JohnnyxS sent me. And i think that "hotfix" is actualy working as i had 50mins SoT and battey was on 89% after i did those steps from reddit post (then i updated to MIUI 12) and now need to do it all over again
Click to expand...
Click to collapse
I'm glad mate, looking forward to your findings!
JohnnyxS said:
I'm glad mate, looking forward to your findings!
Click to expand...
Click to collapse
Is it possible to post the fix here? I have the same problem and maybe others that have the same issue might fix it with your fix! Tks
thomasginn said:
Is it possible to post the fix here? I have the same problem and maybe others that have the same issue might fix it with your fix! Tks
Click to expand...
Click to collapse
I had to read the rules about the links, seems to be allowed for topic in hand.
This is a potential fix for battery drain on mi 9t/redmi k20:
https://www.reddit.com/r/Mi9T/comments/exlib1/found_fix_for_battery_drain/
My battery life actually for better a couple of days ago. Still not as good as Android 9.
Put miui 12.0.2.0 on my global 9t, "android system" is using more than usual. tried a few tips mentioned in this and others posts but no effect. will dig more in the next days.
malowz said:
Put miui 12.0.2.0 on my global 9t, "android system" is using more than usual. tried a few tips mentioned in this and others posts but no effect. will dig more in the next days.
Click to expand...
Click to collapse
I don't know how explored is miui 12, since it's new. Gl mate, please share if you find something
Update* 2
Ok now when i finished my test this is what i can say as MIUI 12 Jumped in middle of my test i had to take my time and do it again. Only those TIPS from JohnnyxS post helped a little bit but not much, i had around 5 hours and 30 mins SoT. Then what i did: Factory reset, redownload update and re install it, then i did Hotfix from post and debloat phone, i unistalled all apps that i did not need with this Tool https://github.com/Szaki/XiaomiADBFastbootTools , DO NOT UNINSTALL SECURITY, people say it can brick your phone so dont do that. I unistalled apps like Facebook, Mi documents, Mi Pay, Mi browser (apps that i dont use) etc. and always MIUI optimization OFF seems like its broken. Now I have been using phone since yesterday 16:00 pm, now is 15:30 pm i have 43% battery and 4 hours and 30 min SoT. thats how i manage to fix my batterylife. I hope this will help someone since i know how is frustrating situation.
1. Factory Reset
2. Reinstall Update
3. Hotfix (From JohnnyxS post)
4. Debloat.
5. MIUI optimization OFF
GL to everyone
Android System is at 27% still really high i dont know how to fix that.
prvi357 said:
Ok now when i finished my test this is what i can say as MIUI 12 Jumped in middle of my test i had to take my time and do it again. Only those TIPS from JohnnyxS post helped a little bit but not much, i had around 5 hours and 30 mins SoT. Then what i did: Factory reset, redownload update and re install it, then i did Hotfix from post and debloat phone, i unistalled all apps that i did not need with this Tool https://github.com/Szaki/XiaomiADBFastbootTools , DO NOT UNINSTALL SECURITY, people say it can brick your phone so dont do that. I unistalled apps like Facebook, Mi documents, Mi Pay, Mi browser (apps that i dont use) etc. and always MIUI optimization OFF seems like its broken. Now I have been using phone since yesterday 16:00 pm, now is 15:30 pm i have 43% battery and 4 hours and 30 min SoT. thats how i manage to fix my batterylife. I hope this will help someone since i know how is frustrating situation.
1. Factory Reset
2. Reinstall Update
3. Hotfix (From JohnnyxS post)
4. Debloat.
5. MIUI optimization OFF
GL to everyone
Android System is at 27% still really high i dont know how to fix that.
Click to expand...
Click to collapse
Can you please post a screenshot how idle (like overnight, with WiFi and Mobile on) looks like - how much it drains per hour
prvi357 said:
Ok now when i finished my test this is what i can say as MIUI 12 Jumped in middle of my test i had to take my time and do it again. Only those TIPS from JohnnyxS post helped a little bit but not much, i had around 5 hours and 30 mins SoT. Then what i did: Factory reset, redownload update and re install it, then i did Hotfix from post and debloat phone, i unistalled all apps that i did not need with this Tool https://github.com/Szaki/XiaomiADBFastbootTools , DO NOT UNINSTALL SECURITY, people say it can brick your phone so dont do that. I unistalled apps like Facebook, Mi documents, Mi Pay, Mi browser (apps that i dont use) etc. and always MIUI optimization OFF seems like its broken. Now I have been using phone since yesterday 16:00 pm, now is 15:30 pm i have 43% battery and 4 hours and 30 min SoT. thats how i manage to fix my batterylife. I hope this will help someone since i know how is frustrating situation.
1. Factory Reset
2. Reinstall Update
3. Hotfix (From JohnnyxS post)
4. Debloat.
5. MIUI optimization OFF
GL to everyone
Android System is at 27% still really high i dont know how to fix that.
Click to expand...
Click to collapse
Thanks for sharing mate, how is idle drain?
prvi357 said:
i had around 5 hours and 30 mins SoT. Then what i did: Factory reset, redownload update and re install it, then i did Hotfix from post and debloat phone...
...I unistalled apps like Facebook, Mi documents, Mi Pay, Mi browser (apps that i dont use) etc. and always MIUI optimization OFF seems like its broken. Now I have been using phone since yesterday 16:00 pm, now is 15:30 pm i have 43% battery and 4 hours and 30 min SoT...
Android System is at 27% still really high i dont know how to fix that.
Click to expand...
Click to collapse
1st) MIUI optimization not very helpful!
2nd) that adb commend effect a little (but fix many off lags!)
Code:
adb shell cmd package bg-dexopt-job
but i got 8-9 hrs SOT on MIUI 11 and 7-8 hrs on MIUI 12
for beggining...I uninstall some apps.
MIUI bloatwares:
Code:
adb shell pm uninstall -k --user 0 com.miui.mishare.connectivity
adb shell pm uninstall -k --user 0 com.miui.bugreport
adb shell pm uninstall -k --user 0 com.miui.miservice
adb shell pm uninstall -k --user 0 com.miui.huanji
adb shell pm uninstall -k --user 0 com.android.browser
adb shell pm uninstall -k --user 0 com.mi.globalbrowser
adb shell pm uninstall -k --user 0 com.xiaomi.midrop
adb shell pm uninstall -k --user 0 com.android.midrive
adb shell pm uninstall -k --user 0 com.mipay.wallet
adb shell pm uninstall -k --user 0 com.mipay.wallet.id
adb shell pm uninstall -k --user 0 com.mipay.wallet.in
adb shell pm uninstall -k --user 0 com.xiaomi.payment
adb shell pm uninstall -k --user 0 com.xiaomi.mipicks
adb shell pm uninstall -k --user 0 com.xiaomi.glgm
adb shell pm uninstall -k --user 0 com.xiaomi.mircs
adb shell pm uninstall -k --user 0 com.miui.virtualsim
adb shell pm uninstall -k --user 0 com.xiaomi.mipicks
adb shell pm uninstall -k --user 0 com.xiaomi.scanner
adb shell pm uninstall -k --user 0 com.miui.smsextra
adb shell pm uninstall -k --user 0 com.miui.msa.global
adb shell pm uninstall -k --user 0 com.miui.systemAdSolution
adb shell pm uninstall -k --user 0 com.miui.touchassistant
adb shell pm uninstall -k --user 0 com.miui.personalassistant
adb shell pm uninstall -k --user 0 com.miui.nextpay
adb shell pm uninstall -k --user 0 com.miui.visimcore
adb shell pm uninstall -k --user 0 com.miui.yellowpage
adb shell pm uninstall -k --user 0 com.miui.miwallpaper
adb shell pm uninstall -k --user 0 com.miui.hybrid
adb shell pm uninstall -k --user 0 com.miui.hybrid.accessory
adb shell pm uninstall -k --user 0 com.miui.freeform
adb shell pm uninstall -k --user 0 com.miui.fm
adb shell pm uninstall -k --user 0 com.miui.fmservice
adb shell pm uninstall -k --user 0 com.mi.android.globalpersonalassistant
adb shell pm uninstall -k --user 0 com.mi.android.globalminusscreen
adb shell pm uninstall -k --user 0 com.facebook.services
adb shell pm uninstall -k --user 0 com.facebook.system
adb shell pm uninstall -k --user 0 com.facebook.appmanager
adb shell pm uninstall -k --user 0 com.facebook.katana
adb shell pm uninstall -k --user 0 com.dsi.ant.server
adb shell pm uninstall -k --user 0 com.netflix.partner.activation
Google bloatwares:
Code:
adb shell pm uninstall -k --user 0 com.google.android.printservice.recommendation
adb shell pm uninstall -k --user 0 com.google.ar.lens
adb shell pm uninstall -k --user 0 com.google.ar.core
adb shell pm uninstall -k --user 0 com.google.android.marvin.talkback
adb shell pm uninstall -k --user 0 com.google.android.projection.gearhead
adb shell pm uninstall -k --user 0 com.google.android.music
adb shell pm uninstall -k --user 0 com.google.android.videos
adb shell pm uninstall -k --user 0 com.google.android.apps.photos
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon
adb shell pm uninstall -k --user 0 com.google.android.apps.books
adb shell pm uninstall -k --user 0 com.google.android.apps.docs
Android bloatwares:
Code:
adb shell pm uninstall -k --user 0 com.android.providers.downloads.ui
adb shell pm uninstall -k --user 0 com.android.stk
adb shell pm uninstall -k --user 0 com.android.hotspot2
adb shell pm uninstall -k --user 0 com.android.managedprovisioning
adb shell pm uninstall -k --user 0 com.android.cts.priv.ctsshim
adb shell pm uninstall -k --user 0 com.android.cts.ctsshim
adb shell pm uninstall -k --user 0 com.android.apps.tag
adb shell pm uninstall -k --user 0 com.android.dreams.basic
adb shell pm uninstall -k --user 0 com.android.dreams.phototable
adb shell pm uninstall -k --user 0 com.android.bluetoothmidiservice
adb shell pm uninstall -k --user 0 com.android.bookmarkprovider
adb shell pm uninstall -k --user 0 com.android.smspush
adb shell pm uninstall -k --user 0 com.android.storagemanager
adb shell pm uninstall -k --user 0 com.android.internal.systemui.navbar.twobutton
adb shell pm uninstall -k --user 0 com.android.internal.systemui.navbar.threebutton
adb shell pm uninstall -k --user 0 com.android.internal.systemui.navbar.gestural
adb shell pm uninstall -k --user 0 com.android.internal.systemui.navbar.gestural_narrow_back
adb shell pm uninstall -k --user 0 com.android.internal.systemui.navbar.gestural_wide_back
adb shell pm uninstall -k --user 0 com.android.internal.systemui.navbar.gestural_extra_wide_back
adb shell pm uninstall -k --user 0 com.android.theme.font.notoserifsource
adb shell pm uninstall -k --user 0 com.android.theme.icon.roundedrect
adb shell pm uninstall -k --user 0 com.android.theme.icon.square
adb shell pm uninstall -k --user 0 com.android.theme.icon.squircle
adb shell pm uninstall -k --user 0 com.android.theme.icon.teardrop
adb shell pm uninstall -k --user 0 com.android.theme.color.black
adb shell pm uninstall -k --user 0 com.android.theme.color.cinnamon
adb shell pm uninstall -k --user 0 com.android.theme.color.green
adb shell pm uninstall -k --user 0 com.android.theme.color.ocean
adb shell pm uninstall -k --user 0 com.android.theme.color.orchid
adb shell pm uninstall -k --user 0 com.android.theme.color.purple
adb shell pm uninstall -k --user 0 com.android.theme.color.space
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.circular.themepicker
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.circular.settings
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.circular.systemui
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.circular.launcher
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.circular.android
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.filled.themepicker
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.filled.settings
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.filled.systemui
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.filled.launcher
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.filled.android
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.rounded.settings
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.rounded.systemui
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.rounded.launcher
adb shell pm uninstall -k --user 0 com.android.theme.icon_pack.rounded.android
adb shell pm uninstall -k --user 0 com.android.internal.display.cutout.emulation.double
adb shell pm uninstall -k --user 0 com.android.internal.display.cutout.emulation.tall
adb shell pm uninstall -k --user 0 com.android.internal.display.cutout.emulation.corner
This apps can not uninstall (or not safe) but can disable:
Code:
adb shell pm disable-user com.android.traceur
adb shell pm disable-user com.android.egg
adb shell pm disable-user com.miui.android.fashiongallery
adb shell pm disable-user com.facemoji.lite.xiaomi
EXTRA:
- Disable Auto Sync
- Disable Dual SIM on 4G
- Disable AOD (Optional)
- Disable Notification Wake Screen (Optional)
- Disable Raise To Wake (Optional.. for me this option is enabled)
- Turn off Wifi and bluetooth scan for location service
- Disable Google Assistant in Lockscreen
- Disable "Update at night automatical" in Weather app
- Set restrict mode for some apps you not use all of day
- Set timer for Dark mode, Battery saveing mode. (I set dark from 8pm-8am, battery saving from 00-8am)
- Unlock bootloader and install a AOSP base ROM (MIUI very lagy and battery hungre custom skin in android world!!!)
GenomeX said:
1st) MIUI optimization not very helpful!
2nd) that adb commend effect a little (but fix many off lags!)
but i got 8-9 hrs SOT on MIUI 11 and 7-8 hrs on MIUI 12
for beggining...I uninstall some apps.
MIUI bloatwares:
Google bloatwares:
Android bloatwares:
This apps can not uninstall (or not safe) but can disable:
EXTRA:
- Disable Auto Sync
- Disable Dual SIM on 4G
- Disable AOD (Optional)
- Disable Notification Wake Screen (Optional)
- Disable Raise To Wake (Optional.. for me this option is enabled)
- Turn off Wifi and bluetooth scan for location service
- Disable Google Assistant in Lockscreen
- Disable "Update at night automatical" in Weather app
- Set restrict mode for some apps you not use all of day
- Set timer for Dark mode, Battery saveing mode. (I set dark from 8pm-8am, battery saving from 00-8am)
- Unlock bootloader and install a AOSP base ROM (MIUI very lagy and battery hungre custom skin in android world!!!)
Click to expand...
Click to collapse
Maybe, delete system to prevent booting and draining battery ?
Delete this.
Thanks for the list!!
If you delete athena, apps won't close in the background when you press the multitasking button...
There are more apps that are not safe to remove, check everything well.
Youtube_Ll0r3nt3 said:
If you delete athena, apps won't close in the background when you press the multitasking button...
There are more apps that are not safe to remove, check everything well.
Click to expand...
Click to collapse
Thanks for the information, for my part, I don't have this problem!
I will add it to the list anyway. Thank you !
PS: It works without.
Hey bro, I found two files in oppo_product/product/framework called uimremoteserverlibrary.jar and uimremoteclientlibrary.jar
Could you investigate if it is safe to delete?
Youtube_Ll0r3nt3 said:
Hey bro, I found two files in oppo_product/product/framework called uimremoteserverlibrary.jar and uimremoteclientlibrary.jar
Could you investigate if it is safe to delete?
Click to expand...
Click to collapse
Edit: It should be, I haven't tried it, but I think it's possible.
However, if you really want to get the answer and aren't afraid to format your phone, then you have to try. It's the best way to learn
If you had a problem with the settings, to display the list of installed applications, it is now fixed.
I try to update the list as much as possible, and every day, to get to know each application better.
I will follow up on this tutorial, showing how to debloat Realme UI via Terminal Emulator (rooted devices only).
Have a good holiday!
Hey
Kydaix said:
View attachment 5159191
● I am in no way responsible for what may happen, bricked devices, etc...
● If you do this tutorial, it is your choice and your own responsibility.
Today, I want to post a tutorial to help you debloating the new version of Realme UI [RMX1931EX_11_C.34] on Realme X2 Pro.
If you have any problems, simply format your phone.
View attachment 5159215
I'm going to divide this into several lists with some explanations or information.
Spoiler: Platform Tools SDK installation and preparation.
First, download the ADB drivers from here! (official link)
After downloading it, extract the content from it. You will normally get a folder.
Open the folder and inside, create a new .txt document. Change the extension of the document to .bat.
View attachment 5159237
From now on, edit the file via an external software (notepad++ for my part) or notepad.exe.
View attachment 5159243
You have completed the preparation of the Platform Tools SDK.
Spoiler: Preparing the smartphone.
Now connect your phone to your computer (USB, Type-c, etc...), select the file transfer option. then go to the "About phone" section.
Go to the "Version" section.
Press your "Build number" until a message appears telling you that you are now a developer.
Once these settings have been activated, go to the "Additional Settings" category then go into "Developer options" and turn on "USB debugging".
You have finished this step, you can move on to the next one!
Spoiler: Debloating of Realme UI.
Now, in the .bat file on your computer, write this at the beginning :
Code:
@echo off
cd /D "%~dp0"
Then, underneath, make your list of applications to be uninstalled (see lists below). For example :
View attachment 5159261
Once done, all you have to do is save the file and then run it. You should then see a message appear on your phone.
View attachment 5159263
Check the box "Always allow this computer for debugging" then click on "Allow". Normally, the script should run and uninstall unnecessary applications and then, when finished, close.
Now you know how to debloat your Realme X2 Pro! All you have to do is look at the lists.
View attachment 5159271
Find the lists here with some information.
You don't need to remove the explanations, a "#" is placed in front of it so as not to disturb the script.
Spoiler: Android. (com.android.)
adb shell pm uninstall -k --user 0 com.android.backupconfirm #For remote backup, brings up a dialog.
adb shell pm uninstall -k --user 0 com.android.bluetoothmidiservice #Use MIDI in bluetooth? Keep it if you use it (unlikely).
adb shell pm uninstall -k --user 0 com.android.bookmarkprovider #Used to manage bookmarks in the default web browser. Not required for Chrome and other external browsers.
adb shell pm uninstall -k --user 0 com.android.calllogbackup #Linked to backup. Keep it if needed.
adb shell pm uninstall -k --user 0 com.android.cellbroadcastreceiver #Alert broadcaster. Does not work in some countries.
adb shell pm uninstall -k --user 0 com.android.cellbroadcastreceiver.overlay.common #Disabled if you disable the alert broadcaster.
adb shell pm uninstall -k --user 0 com.android.email.partnerprovider #Gmail works perfectly without.
adb shell pm uninstall -k --user 0 com.android.keychain #Google auto-typing works without.
adb shell pm uninstall -k --user 0 com.android.managedprovisioning #More information here.
adb shell pm uninstall -k --user 0 com.android.mtn #Not installed on my device. File transfer works without.
adb shell pm uninstall -k --user 0 com.android.providers.partnerbookmarks #Same as "bookmarkprovider".
adb shell pm uninstall -k --user 0 com.android.providers.userdictionary #Not needed for smartlock or google keyboard personal dictionary.
adb shell pm uninstall -k --user 0 com.android.sharedstoragebackup #Linked to backup. Keep it if needed.
adb shell pm uninstall -k --user 0 com.android.statementservice #Not much information, but works perfectly without it.
adb shell pm uninstall -k --user 0 com.android.stk #SIM Application Toolkit, works perfectly without, for me.
adb shell pm uninstall -k --user 0 com.android.wallpaperbackup #Relates to the wallpaper of the home page. Useless.
Spoiler: ColorOS. (com.coloros.)
adb shell pm uninstall -k --user 0 com.coloros.video #Video app. Keep it if you use it, you will still be able to play videos without it.
adb shell pm uninstall -k --user 0 com.coloros.pictorial #Not installed on my device. According to research, this is useless, can be removed without problems.
adb shell pm uninstall -k --user 0 com.coloros.oppomultiapp #Application cloning will no longer be available.
adb shell pm uninstall -k --user 0 com.coloros.activation #Useless.
adb shell pm uninstall -k --user 0 com.coloros.activation.overlay.common #Useless too.
adb shell pm uninstall -k --user 0 com.coloros.assistantscreen #Maybe linked to Google Assistant?
adb shell pm uninstall -k --user 0 com.coloros.athena #Some may have a problem with multitasking (when closing apps in background). Thanks to Ll0r3nt3.
adb shell pm uninstall -k --user 0 com.coloros.backuprestore #Clone phone app, keep it if you need it.
adb shell pm uninstall -k --user 0 com.coloros.backuprestore.remoteservice #Related to backup. Keep it if you need it.
adb shell pm uninstall -k --user 0 com.coloros.bootreg #Useless.
adb shell pm uninstall -k --user 0 com.coloros.childrenspace #Who uses it? No one...
adb shell pm uninstall -k --user 0 com.coloros.cloud #Not installed on my device. I guess it's a realme cloud service.
adb shell pm uninstall -k --user 0 com.coloros.compass2 #Compass app, keep if you use it.
adb shell pm uninstall -k --user 0 com.coloros.deepthinker #Android works without.
adb shell pm uninstall -k --user 0 com.coloros.encryption #Allows you to encrypt your applications.
adb shell pm uninstall -k --user 0 com.coloros.favorite.overlay.common #Useless.
adb shell pm uninstall -k --user 0 com.coloros.floatassistant #Useless, but keep it if you want.
adb shell pm uninstall -k --user 0 com.coloros.focusmode #Keep it if you use it.
adb shell pm uninstall -k --user 0 com.coloros.gamespace #Keep it if you want, but works without.
adb shell pm uninstall -k --user 0 com.coloros.gamespaceui #Not installed on my device. Related to gamespace, keep it if you use it.
adb shell pm uninstall -k --user 0 com.coloros.healthcheck #Healthcheck app.
adb shell pm uninstall -k --user 0 com.coloros.locationproxy #Works without.
adb shell pm uninstall -k --user 0 com.coloros.lockassistant #Works perfectly without.
adb shell pm uninstall -k --user 0 com.coloros.ocrscanner #Not installed on my device. So it should work perfectly without.
adb shell pm uninstall -k --user 0 com.coloros.ocrservice #The same. Works perfectly without.
adb shell pm uninstall -k --user 0 com.coloros.ocs.opencapabilityservice #Works perfectly without.
adb shell pm uninstall -k --user 0 com.coloros.onekeylockscreen #Not installed on my device. Should work perfectly without.
adb shell pm uninstall -k --user 0 com.coloros.personalassistant.overlay.common #Google assistant works without.
adb shell pm uninstall -k --user 0 com.coloros.phonemanager #Useless app. Keep it if you use it.
adb shell pm uninstall -k --user 0 com.coloros.phonenoareainquire #Useless.
adb shell pm uninstall -k --user 0 com.coloros.resmonitor #Not installed on my device, it works without.
adb shell pm uninstall -k --user 0 com.coloros.sceneservice #Works very well without.
adb shell pm uninstall -k --user 0 com.coloros.securepay #No problem without.
adb shell pm uninstall -k --user 0 com.coloros.securitykeyboard #Useless, keyboard still works without.
adb shell pm uninstall -k --user 0 com.coloros.smartdrive #Google drive works without it.
adb shell pm uninstall -k --user 0 com.coloros.smartsidebar #Keep it if you use sidebar.
adb shell pm uninstall -k --user 0 com.coloros.soundrecorder #Keep it if you want it.
adb shell pm uninstall -k --user 0 com.coloros.speechassist #Not installed on my device, what is that?
adb shell pm uninstall -k --user 0 com.coloros.translate.engine #Same.
adb shell pm uninstall -k --user 0 com.coloros.video #Not installed on my device. You can watch videos in your gallery without.
adb shell pm uninstall -k --user 0 com.coloros.wallet #Not installed on my device, probably a wallet app, keep it if needed.
adb shell pm uninstall -k --user 0 com.coloros.weather.service #Meteo app works without it. (on my device)
adb shell pm uninstall -k --user 0 com.coloros.weather2 #Meteo app, you can keep it if you use it.
adb shell pm uninstall -k --user 0 com.coloros.widget.smallweather #Weather widgets.
adb shell pm uninstall -k --user 0 com.coloros.wifibackuprestore #To backup wifi.
Spoiler: Oppo. (com.oppo.)
adb shell pm uninstall -k --user 0 com.oppo.ScoreAppMonitor #Not installed.
adb shell pm uninstall -k --user 0 com.oppo.aod #Not installed.
adb shell pm uninstall -k --user 0 com.oppo.atlas #IDK what is this. But it works without.
adb shell pm uninstall -k --user 0 com.oppo.bttestmode #Same.
adb shell pm uninstall -k --user 0 com.oppo.criticallog #Useless.
adb shell pm uninstall -k --user 0 com.oppo.decrypt #Keep if you use crypt app.
adb shell pm uninstall -k --user 0 com.oppo.engineermode #Useless.
adb shell pm uninstall -k --user 0 com.oppo.engineermode.camera #Cam works without.
adb shell pm uninstall -k --user 0 com.oppo.engineermode.network #Wifi works without.
adb shell pm uninstall -k --user 0 com.oppo.fingerprints.finterprintsensortest #Not installed on my device.
adb shell pm uninstall -k --user 0 com.oppo.gmail.overlay #Gmail works without.
adb shell pm uninstall -k --user 0 com.oppo.locationpicker #Location works without.
adb shell pm uninstall -k --user 0 com.oppo.logkit #Useless.
adb shell pm uninstall -k --user 0 com.oppo.logkitservice #Not installed, but same.
adb shell pm uninstall -k --user 0 com.oppo.mimosiso #IDK what is this, but looks useless.
adb shell pm uninstall -k --user 0 com.oppo.music #Music app, keep if you use it, or download one instead.
adb shell pm uninstall -k --user 0 com.oppo.nw #Useless.
adb shell pm uninstall -k --user 0 com.oppo.market #Not installed.
adb shell pm uninstall -k --user 0 com.oppo.operationManual #As you want, if you read it.
adb shell pm uninstall -k --user 0 com.oppo.oppopowermonitor #Works without.
adb shell pm uninstall -k --user 0 com.oppo.ovoicemanager #Not installed.
adb shell pm uninstall -k --user 0 com.oppo.partnerbrowsercustomizations #Useless.
adb shell pm uninstall -k --user 0 com.oppo.qualityprotect #Same.
adb shell pm uninstall -k --user 0 com.oppo.quicksearchbox #Maybe it is a widget?
adb shell pm uninstall -k --user 0 com.oppo.rftoolkit #Keep if needed.
adb shell pm uninstall -k --user 0 com.oppo.sos #Keep it if you are alone.
adb shell pm uninstall -k --user 0 com.oppo.startlogkit #Not installed.
adb shell pm uninstall -k --user 0 com.oppo.tzupdate #Related to the time zone. Works without.
adb shell pm uninstall -k --user 0 com.oppo.usageDump #Same.
adb shell pm uninstall -k --user 0 com.oppo.usercenter #Same..
adb shell pm uninstall -k --user 0 com.oppo.webview #Same...
adb shell pm uninstall -k --user 0 com.oppo.wifirf #Wifi works without it!
adb shell pm uninstall -k --user 0 com.oppo.wifisniffer #Wifi works perfectly without too.
adb shell pm uninstall -k --user 0 com.oppoex.afterservice #Maybe about after sales service.
Spoiler: Google. (com.google.)
adb shell pm uninstall -k --user 0 com.google.android.apps.restore #Useless after setup.
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon #Google duo app.
adb shell pm uninstall -k --user 0 com.google.android.apps.wellbeing #Useless.
adb shell pm uninstall -k --user 0 com.google.android.feedback #Same.
adb shell pm uninstall -k --user 0 com.google.android.googlequicksearchbox #Google search bar widget.
adb shell pm uninstall -k --user 0 com.google.android.onetimeinitializer #Useless.
adb shell pm uninstall -k --user 0 com.google.android.partnersetup #Same.
adb shell pm uninstall -k --user 0 com.google.android.printservice.recommendation #Prints work without.
adb shell pm uninstall -k --user 0 com.google.android.projection.gearhead #Android Auto app.
adb shell pm uninstall -k --user 0 com.google.android.setupwizard #Useless after setup.
adb shell pm uninstall -k --user 0 com.google.android.tag #Tap app, useless.
adb shell pm uninstall -k --user 0 com.google.android.tts #TextToSpeech service.
adb shell pm uninstall -k --user 0 com.google.ar.core #Keep it if you use VR.
adb shell pm uninstall -k --user 0 com.google.android.keep #Google keep app, note.
adb shell pm uninstall -k --user 0 com.google.android.apps.youtube.music #Google music app.
adb shell pm uninstall -k --user 0 com.google.android.apps.magazines #Google actu app.
adb shell pm uninstall -k --user 0 com.google.android.apps.photos #Google photo app.
adb shell pm uninstall -k --user 0 com.google.android.calendar #Google calendar app.
adb shell pm uninstall -k --user 0 com.google.android.videos #Google play film app.
adb shell pm uninstall -k --user 0 com.google.android.apps.docs #Useless.
adb shell pm uninstall -k --user 0 com.google.android.music #Not installed.
# adb shell pm uninstall -k --user 0 com.google.android.modulemetadata #Can be uninstalled, however you will no longer be able to access to your installed apps in settings, and manage their options like data usage, wifi access, etc...
adb shell pm uninstall -k --user 0 com.google.android.marvin.talkback #Keep it if you use it.
adb shell pm uninstall -k --user 0 com.google.android.gmsintegration #Google location history service. GPS works without.
adb shell pm uninstall -k --user 0 com.google.android.gms.location.history #Same.
Spoiler: Qualcomm. (com.qualcomm.)
# adb shell pm uninstall -k --user 0 com.qualcomm.atfwd #Needed to mirror your devices display on a TV.
adb shell pm uninstall -k --user 0 com.qualcomm.embms #Evolved Multimedia Broadcast Multicast Service. More here!
adb shell pm uninstall -k --user 0 com.qualcomm.qti.services.systemhelper #Useless qualcomm service.
adb shell pm uninstall -k --user 0 com.qualcomm.qti.modemtestmode #Same.
adb shell pm uninstall -k --user 0 com.qualcomm.qti.optinoverlay #Same.
adb shell pm uninstall -k --user 0 com.qualcomm.qti.performancemode #Same.
adb shell pm uninstall -k --user 0 com.qualcomm.qti.qcolor #Same.
adb shell pm uninstall -k --user 0 com.qualcomm.qti.remoteSimlockAuth #Same.
adb shell pm uninstall -k --user 0 com.qualcomm.qti.seccamservice #Camera works without.
adb shell pm uninstall -k --user 0 com.qualcomm.timeservice #Time can be changed without.
adb shell pm uninstall -k --user 0 com.qualcomm.uimremoteclient #Same.
adb shell pm uninstall -k --user 0 com.qualcomm.uimremoteserver #Same.
Spoiler: Other applications.
adb shell pm uninstall -k --user 0 com.dolby.daxservice #Dolby Atmos works without.
# adb shell pm uninstall -k --user 0 com.oppo.multimedia.dolby #Dolby app! Keep it if you use Dolby Atmos. The sound works without and the quality does not change.
adb shell pm uninstall -k --user 0 com.dropboxchmod #Dropbox works without.
adb shell pm uninstall -k --user 0 com.dsi.ant.server #Useless.
adb shell pm uninstall -k --user 0 com.facebook.appmanager #Facebook bloatware.
adb shell pm uninstall -k --user 0 com.facebook.katana #Facebook bloatware.
adb shell pm uninstall -k --user 0 com.facebook.services #Facebook bloatware.
adb shell pm uninstall -k --user 0 com.facebook.system #Facebook bloatware.
adb shell pm uninstall -k --user 0 com.ted.number #Useless.
adb shell pm uninstall -k --user 0 com.heytap.habit.analysis #Bloatware. Linked to HeyTap MCS.
adb shell pm uninstall -k --user 0 com.heytap.openid #Service for HeyTap MCS.
adb shell pm uninstall -k --user 0 com.heytap.browser #Not installed. Bloatware. Linked to HeyTap MCS.
adb shell pm uninstall -k --user 0 com.heytap.colorfulengine #Service for HeyTap MCS.
adb shell pm uninstall -k --user 0 com.heytap.datamigration #Service for HeyTap MCS.
adb shell pm uninstall -k --user 0 com.heytap.mcs #Related to OPPO cloud service.
adb shell pm uninstall -k --user 0 com.mediatek.omacp #Works without.
adb shell pm uninstall -k --user 0 com.mobiletools.systemhelper #Not installed, could be bloat.
adb shell pm uninstall -k --user 0 com.nearme.atlas #Useless.
adb shell pm uninstall -k --user 0 com.nearme.instant.platform #Not installed. Same.
adb shell pm uninstall -k --user 0 com.nearme.statistics.rom #Bloatware.
adb shell pm uninstall -k --user 0 com.nearme.browser #Not installed. Same...
adb shell pm uninstall -k --user 0 com.nearme.themestore #Not installed. Same....
adb shell pm uninstall -k --user 0 com.qti.service.colorservice #Maybe related to theme, but it works without.
adb shell pm uninstall -k --user 0 com.qti.xdivert #Useless bloat.
adb shell pm uninstall -k --user 0 com.realme.logtool #Not installed.
adb shell pm uninstall -k --user 0 com.realme.securitycheck #IDK but works without.
adb shell pm uninstall -k --user 0 com.rongcard.eid #Useless.
adb shell pm uninstall -k --user 0 com.tencent.soter.soterserver #Related to tencent games?
adb shell pm uninstall -k --user 0 com.opera.browser #Keep it if you use it.
adb shell pm uninstall -k --user 0 com.opera.preinstall #Opera should work without it.
adb shell pm uninstall -k --user 0 org.kman.AquaMail #Keep if you it.
The list is updated often, I am active.
Click to expand...
Click to collapse
Hey bro, one question, if I want do the debloat script on Linux... how can I do it ? Thanks in advance!
parkpark9999 said:
Hey
Hey bro, one question, if I want do the debloat script on Linux... how can I do it ? Thanks in advance!
Click to expand...
Click to collapse
Sorry, but this script is only for Realme UI.
Kydaix said:
Sorry, but this script is only for Realme UI.
Click to expand...
Click to collapse
I know. I said, I want to execute this script in Linux, not in Windows. I want to debloat my phone on Linux, not Windows. How I can execute this script on Linux ?
Thanks and sorry for the misunderstanding.
parkpark9999 said:
I know. I said, I want to execute this script in Linux, not in Windows. I want to debloat my phone on Linux, not Windows. How I can execute this script on Linux ?
Thanks and sorry for the misunderstanding.
Click to expand...
Click to collapse
Oh I see!
You just have to download Platform Tools for Linux, on this link : https://developer.android.com/studio/releases/platform-tools
Then, run the commands one by one.
Or maybe you can create something like a .bat but for Linux.
Kydaix said:
Oh I see!
You just have to download Platform Tools for Linux, on this link : https://developer.android.com/studio/releases/platform-tools
Then, run the commands one by one.
Or maybe you can create something like a .bat but for Linux.
Click to expand...
Click to collapse
I have already installed adb tools. But the question it's your last paragraph. How I can do this script. I will search more and I said you when I see. Thanks anyway and again, great list!
Safecenter bloat, but no manage app init and float, but work all fine
com.coloros.appmanager bloat but gamespace app float Window menu dont show
Please add in your posts the new things you edit, or at least put them below each list, so we will know that you have updated, thx
If you only want to deactivate an apk instead of uninstalling it, just delete
Code:
uninstall -k
and replace it with
Code:
disable-user
in each line you want.
And instead of deleting some lines, just set a # before.
Thanks for the list!! We will update it
Is there anything in that list relating to work profiles? I ran most of the list up there and it appears to have locked my work profile (I use Island). The phone restarts after a few seconds if I tap the notification to unlock it.
Deleted the work profile and reinstalled Island but it restarted again when setting up the work profile. The phone is also really sluggish as long as a work profile exists.
Oh, I assume it's a bad idea to remove Gmail (com.google.android.gm) since it isn't mentioned, right?
tacc2 said:
Is there anything in that list relating to work profiles? I ran most of the list up there and it appears to have locked my work profile (I use Island). The phone restarts after a few seconds if I tap the notification to unlock it.
Deleted the work profile and reinstalled Island but it restarted again when setting up the work profile. The phone is also really sluggish as long as a work profile exists.
Oh, I assume it's a bad idea to remove Gmail (com.google.android.gm) since it isn't mentioned, right?
Click to expand...
Click to collapse
Try parallel space
Youtube_Ll0r3nt3 said:
Try parallel space
Click to expand...
Click to collapse
Works since it doesn't use a work profile, I assume.