Possible to ADB into Second Space??? - Xiaomi Redmi Note 7 Questions & Answers

IMO, the best feature of MIUI and never had a chance to use it till now(been running very old xiaomi devices and they all finally broke)
not really shocked to see that despite being introduced in MIUI8, 2 versions later and it's still buggy... and it seems that not many people are using it, else the bugs would have been caught.
I'm now in the setting up/ messing with it phase and has ran into the 1st glaring issue,
How do i get adb into second space?
running Saki's ADBFastboot tools, i have access to the system, but it shows as 1st space system, even when phone is logged into 2nd space.
i'm trying to remove the same bloatware in second space. bloatware is already removed in 1st space.

found the solution; manual remove bloatware in 2nd space via adb shell command.
in the command string, --user 10 is 2nd space, --user 0 is 1st space;
therefore, to remove bloatware in 2nd space;
adb shell pm uninstall -k --user 10 package.name

nvm, ignore the "solution"
they don't work once the phone is rebooted... the uninstalled apps on second space gets reinstalled again.

have u found solution?

I found the solution, it works great!
use this code
Code:
pm disable-user --user 10 <package_name>
I have tried to restart, and it works!
but, there are few apps cannot be disabled.
Just dont uninstall, but disable the apps.

Works for me on my Xiaomi Redmi Note 7, but the user was number 999:
pm disable-user --user 999 <package_name>
Thanks

Related

Disable system apps without root (even those with disabled Disable button)

You can disable all system apps without root even those that cannot be disabled from Settings - like Mcafee an LG Health:
- Install adb
- connect your phone and turn on usb debugging
- find the name of the app you want to block with:
adb shell pm list packages
(You can filter the results on windows by adding | findstr "TERM" or | grep "TERM" on linux / mac where you would replace TERM with the word you are looking for. This would look like:
- adb shell pm list packages | findstr "inputmethod"
adb shell pm list packages | grep "inputmethod"
- "Hide" the app with:
adb shell pm hide "packagename"
(where you would replace "packagename" with the name acquired in step 3)
(https://www.reddit.com/r/Android/comments/3eav7t/get_rid_of_unwanted_system_apps_adb_shell_pm_hide/)
I thought it just hides apps, but I googled it and it seams it really disables apps. I tried it with com.lge.mlt, Mcafee and LG Health and now I get more than 5 hours of SoT compared to 3 hours before.
If you have LG PC Suite installed, you already have working adb in its folder...
Little correction to above manual: Once you run adb shell you don't have to keep running it. You're already in the shell.
adb shell
pm list packages -e (the e will show only ones that are enabled)
pm hide "package.name"
exit
Error: java.lang.SecurityException: Neither user 2000 nor current process has android.permission.MANAGE_USERS.
KuGeL94 said:
Error: java.lang.SecurityException: Neither user 2000 nor current process has android.permission.MANAGE_USERS.
Click to expand...
Click to collapse
It worked when the initial post was made - seems that Android stopped that in an update around August 2016.
However, since this comes up high on a google search (which I just did) I thought I'd post for anyone running across it.
You can achieve similar on even Oreo, at least on a Huawei device, by using "pm uninstall -k --user 0 packagename" (Replace packagename with relevant full package name).
This uninstalls the app for the current user only (user 0) (so doesn't need root) so if you do a factory reset (and I guess an OTA upgrade) the app will return. It does seem to uninstall rather than hide though - so obviously be cautious and take a back up first in case you have to do a factory reset.
Hope that helps the next person finding this thread on a search!
gonzo99 said:
It worked when the initial post was made - seems that Android stopped that in an update around August 2016.
However, since this comes up high on a google search (which I just did) I thought I'd post for anyone running across it.
You can achieve similar on even Oreo, at least on a Huawei device, by using "pm uninstall -k --user 0 packagename" (Replace packagename with relevant full package name).
This uninstalls the app for the current user only (user 0) (so doesn't need root) so if you do a factory reset (and I guess an OTA upgrade) the app will return. It does seem to uninstall rather than hide though - so obviously be cautious and take a back up first in case you have to do a factory reset.
Hope that helps the next person finding this thread on a search!
Click to expand...
Click to collapse
Ha! yeah, I was just doing some research and you are right on all three accounts.
1. This is top in google search
2. The PM Uninstall command works great!
3. Its really really gone so be careful!
gonzo99 said:
It worked when the initial post was made - seems that Android stopped that in an update around August 2016.
However, since this comes up high on a google search (which I just did) I thought I'd post for anyone running across it.
You can achieve similar on even Oreo, at least on a Huawei device, by using "pm uninstall -k --user 0 packagename" (Replace packagename with relevant full package name).
This uninstalls the app for the current user only (user 0) (so doesn't need root) so if you do a factory reset (and I guess an OTA upgrade) the app will return. It does seem to uninstall rather than hide though - so obviously be cautious and take a back up first in case you have to do a factory reset.
Hope that helps the next person finding this thread on a search!
Click to expand...
Click to collapse
should become a sticky. we could make a script for samsung bloatware
gonzo99 said:
It worked when the initial post was made - seems that Android stopped that in an update around August 2016.
However, since this comes up high on a google search (which I just did) I thought I'd post for anyone running across it.
You can achieve similar on even Oreo, at least on a Huawei device, by using "pm uninstall -k --user 0 packagename" (Replace packagename with relevant full package name).
This uninstalls the app for the current user only (user 0) (so doesn't need root) so if you do a factory reset (and I guess an OTA upgrade) the app will return. It does seem to uninstall rather than hide though - so obviously be cautious and take a back up first in case you have to do a factory reset.
Hope that helps the next person finding this thread on a search!
Click to expand...
Click to collapse
Thanks, this is exactly what I was looking for. Even on Marshmallow, the hide and unblock commands don't work, so this is probably the only way to get rid of bloatware. But the uninstall command is a bit dangerous since the changes are permanent, is there a way to get the app back once uninstalled?
Great, the pm uninstall command working perfectly on a MI6 without root, I've successfully removed some annoying apps
This didn't work on my Samsung but I am not surprised.
iloveoreos said:
This didn't work on my Samsung but I am not surprised.
Click to expand...
Click to collapse
I have a galaxy note 9 with Oreo and I do not want to update it to Pie so i was trying to disable com.wssyncmlmd but with no success with the commands in this thread, the problem is that I want to disable it, not uninstall it!
If you want to uninstall bloatware apps you can use:
pm uninstall -k --user 0 "app.name"
I can tell you it works uninstalling system apps like linkedin and facebook
If you could help me figuring out a way to only disable (or at least back up) the system update app I'd be very thankful!
prahladyeri said:
Thanks, this is exactly what I was looking for. Even on Marshmallow, the hide and unblock commands don't work, so this is probably the only way to get rid of bloatware. But the uninstall command is a bit dangerous since the changes are permanent, is there a way to get the app back once uninstalled?
Click to expand...
Click to collapse
Yes just run
adb shell pm unhide "packagename"

Is there a way to completely disable OTA Updates on Rooted Fire HD 10?

A few days ago, I rooted my Amazon Fire HD 10 OS 5.6.0.0 with kingoroot. I've customized my tablet and removed a lot of the unnecessary Amazon apps. I really like how my Amazon Fire HD 10 looks right now and don't want to see it get messed up because of an update.
Is there any sure way to stop the Amazon Fire HD 10 from updating? I removed the DeviceSoftwareOTA.apk from the device already, but I've read elsewhere that simply removing the DeviceSoftwareOTA won't stop the updates from happening. Is there anything else I can do?
Yes, you also need to remove ForcedOTA (com.amazon.kindle.otter.oobe.forced.ota). With both of these removed, no updates are possible.
From my experience on HD8 (7th Gen) on OS 5.3.3.0 since September :
Even though I could not root HD8, I was able to "pm uninstall" both com.amazon.device.software.ota and com.amazon.kindle.otter.oobe.forced.ota
Since then, with WiFi connected everyday, it had never updated to a new version of Fire OS.
Since it is rooted, use ES File Explorer (change settings to give it root permission and show hidden files) and rename the file /system/etc/security/otacerts.zip. It uses this file to verify the updates. While you are at it, I need a copy of the otacerts.zip file if you don't mind. I am trying to restore mine and lost it during a factory restore.
Dan_firehd said:
From my experience on HD8 (7th Gen) on OS 5.3.3.0 since September :
Even though I could not root HD8, I was able to "pm uninstall" both com.amazon.device.software.ota and com.amazon.kindle.otter.oobe.forced.ota
Since then, with WiFi connected everyday, it had never updated to a new version of Fire OS.
Click to expand...
Click to collapse
what did you set user as I ran this command pm uninstall -k --user 0 com.amazon.otter.oobe.forced.ota and got user not found
ecwebster31 said:
what did you set user as I ran this command pm uninstall -k --user 0 com.amazon.otter.oobe.forced.ota and got user not found
Click to expand...
Click to collapse
I am not sure what you are asking. I did not "set user".
The following were what I typed:
pm uninstall -k --user 0 com.amazon.device.software.ota
pm uninstall -k --user 0 com.amazon.kindle.otter.oobe.forced.ota
69ragtop said:
Since it is rooted, use ES File Explorer (change settings to give it root permission and show hidden files) and rename the file /system/etc/security/otacerts.zip. It uses this file to verify the updates. While you are at it, I need a copy of the otacerts.zip file if you don't mind. I am trying to restore mine and lost it during a factory restore.
Click to expand...
Click to collapse
ES File Explorer has become crapware. Try Amaze file manager... simple, compact, all you need without the unnecessary junk ES tries to foist on you now.
ecwebster31 said:
what did you set user as I ran this command pm uninstall -k --user 0 com.amazon.otter.oobe.forced.ota and got user not found
Click to expand...
Click to collapse
try replacing 0 with current so: -k --user current
pm uninstall -k --user 0 com.amazon.device.software.ota
pm uninstall -k --user 0 com.amazon.kindle.otter.oobe.forced.ota
I tried these two commands and I get a "failed to delete" message which I assume is because I have not rooted the tablet. There is an app called "Settings Database Editor". Does anyone have any experience with that? I used it to successfully disable the lock screen without rooting, but it looks like I'm going to have to take the plunge and root in order to block the OTA updates. (first time working with an android device)
ironlion37 said:
pm uninstall -k --user 0 com.amazon.device.software.ota
pm uninstall -k --user 0 com.amazon.kindle.otter.oobe.forced.ota
I tried these two commands and I get a "failed to delete" message which I assume is because I have not rooted the tablet. There is an app called "Settings Database Editor". Does anyone have any experience with that? I used it to successfully disable the lock screen without rooting, but it looks like I'm going to have to take the plunge and root in order to block the OTA updates. (first time working with an android device)
Click to expand...
Click to collapse
Most of the ability to disable system apps has been patched already. The command you posted above has long been patched. Settings Database Editor is great and powerful. You're lucky you got the lock.disable to work. 9 times out of 10 it doesn't.
So you are correct. Unless you got any of the known tools to work, the only way to truly stop OTA is to destroy the application that handles them. My HD 8 has been on 5.4.0.0 or less for 2 almost 3 years because the commands you posted above, totally disabled the app.
Sent from my Galaxy S4 using XDA Labs
ironlion37 said:
pm uninstall -k --user 0 com.amazon.device.software.ota
pm uninstall -k --user 0 com.amazon.kindle.otter.oobe.forced.ota
Click to expand...
Click to collapse
DragonFire1024 said:
My HD 8 has been on 5.4.0.0 or less for 2 almost 3 years because the commands you posted above, totally disabled the app.
Click to expand...
Click to collapse
Good to know that these two commands is all what's needed. I was just able to successfully execute them on a mtk-su rooted Fire HD 10 "suez" running 5.6.4.0.
Just out of curiosity,
1. Does anybody know what "otter" and "oobe" are supposed to mean, i.e. what com.amazon.kindle.otter.oobe.forced.ota is supposed to do?
2. Some people also recommend to get rid of com.amazon.device.software.ota.override — what does this do?
3. Why do some people also remove com.amazon.settings.systemupdates — this is helpful for checking the current OS version, right?
Thank you very much for all your work @DragonFire1024!
anon/droid said:
Good to know that these two commands is all what's needed. I was just able to successfully execute them on a mtk-su rooted Fire HD 10 "suez" running 5.6.4.0.
Just out of curiosity,
1. Does anybody know what "otter" and "oobe" are supposed to mean, i.e. what com.amazon.kindle.otter.oobe.forced.ota is supposed to do?
2. Some people also recommend to get rid of com.amazon.device.software.ota.override — what does this do?
3. Why do some people also remove com.amazon.settings.systemupdates — this is helpful for checking the current OS version, right?
Thank you very much for all your work @DragonFire1024!
Click to expand...
Click to collapse
The first and second one are applications that grabbed OTA updates sent by Amazon to update the system of your device.vI would assume if one application shuts down the other one takes over. But like most things you need one to work in order for the other to work. If you simply disabled the second one no OTA updates will be sent to your device that will upgrade or change Amazon system like giving you a new version of fire OS.
Removing the third one just disables your ability to tap on the system updates page in the settings application. it will not actually stop any update from taking place on the device if it's disabled. It just removes your ability to get anywhere near the update section or your ability to visually see what's going on there.

Cant disable Google Photos

Hi guys,
On latest off. firmw. i cant fully disable google photos. Ive disables a lot of hw and google bloatware from data and system (no root), but at 12h or some restarts.. IT APPEARS ON ALUNCHER AGAIN. Sorry for caps
I dont know why it happens, if huawei soft calls the app in background, if is a malware or what... I dont know if can be the huawei/honor themes app(not official app).
Any suggestion?
I disabled that long time ago, i don't have it now in 9.
I had the same problem. Have you tried this?
The code is:
Code:
adb shell pm disable-user --user 0 com.google.android.apps.photos
bicodegas said:
I had the same problem. Have you tried this?
The code is:
Code:
adb shell pm disable-user --user 0 com.google.android.apps.photos
Click to expand...
Click to collapse
Ty mate, the problem gone some days ago. I tried some tips, but only worked for me when i tried to disable the Optimizer 1st check (auto-optimize...). Afther this, i cleaned data and cache from app, uninstalled updates, cleaned cache and data again, and last, disabled the app from system. Reboted and the problem gone.
If i have more issues with this, ill try ur adb command.
Thank you very much.
You're welcome. Glad it's gone.

[Guide][CN Version]Removal of China related Apps [RealMe X2pro] Making it clean

Disclaimer :
PHP:
* I'm not responsible for bricked devices, dead SD cards, thermonuclear war, or you getting fired because the alarm app failed (like it did for me...).
* Your warranty will be void if you tamper with any part of your device / software.
Objective :
The following is for all who have a CN Version RealMe X2pro and want to change to EU Rom and not able like myself for the time being.
I'll provide a step by step Guide to remove all unwanted Chines system apps related to RealMe or Oppo and what to install to get a somewhat of clean and working build that would still get OTA and will be a better experience.
I hope its useful as that was the only way for me to use my CN version phone.
What you need First to be done:
Make sure google play Store is installed.
Make sure you are on the latest update. "RMX1931_11_A.12" even if you do OTA update nth will be affected.
Source all credits to this post.
What you need to do Second:
1) Install the USB drivers for your device (Google has a list of some universal USB drivers here)
2) Download the ADB binary for your particular OS (Windows, Mac, Linux)
3) Extract the zip file into a folder that you can quickly access.
4) On your phone, go to Settings and tap on About Phone. Find the Build Number and tap on it 7 times to enable Developer Options.
5) Now enter Developer Options and find USB Debugging. Enable it.
6) Open CMD at the location where you downloaded point 2 and point 3
The Source link has even more details ill stop at this point and jump to the Third step with what we need to delete.
Step Three :
After CMD is open on the designated folder where you extracted the zip file:
Commands first set:
PHP:
* adb devices
* adb shell
you will see your device details "[email protected]:/ $"
click the source link if you need visual details
Commands second set:
PHP:
Now copy past hit enter part for the following after each other
* pm uninstall -k --user 0 com.oppo.quicksearchbox ----> This will remove the single swip from top to bottom search that has lots of Chinese in it
* pm uninstall -k --user 0 com.coloros.assistantscreen ---->This will remove the breeno assistant
* pm uninstall -k --user 0 com.coloros.smartdrive ---->This will remove the breeno assistant drive
* pm uninstall -k --user 0 com.coloros.directui ---->This will remove the breeno assistant
* pm uninstall -k --user 0 com.coloros.ocrscanner ---->This will remove the breeno assistant
* pm uninstall -k --user 0 com.coloros.speechassist ----->This will remove the breeno assistant
* pm uninstall -k --user 0 com.nearme.browser ------>This will remove the browser
* pm uninstall -k --user 0 com.oppo.market ---->This will remove App Market
* pm uninstall -k --user 0 com.coloros.findmyphone ---->This will remove find my phone service
* pm uninstall -k --user 0 com.realme.findphone.client2 ----> This will remove Find my Phone
* pm uninstall -k --user 0 com.coloros.filemanager ----> This will remove File Manager
* pm uninstall -k --user 0 com.coloros.wallet ----> This will remove the wallet
* pm uninstall -k --user 0 com.nearme.themestore ---> This will remove Themes
* pm uninstall -k --user 0 com.sohu.inputmethod.sogouoem ----> This will remove the Keyboard make sure you have another one installed.
Those area the apps that i found annoying and made me hate the UI.
Step Four:
Now since everything is removed you ether clone your old phone using the app or just start downloading your apps from Google play Store.
for the swipe down the moment you install "Google" from play store it will directly replace it with google search.
Note: In case anything happened you can always just do a hard rest and you are back to normal
Let me know how helpful this is to you guys. and if you need to check anything else to update this post.
This is how i am actually enjoying my RealMe X2pro now.
again all thanks and credit to @ Doug Lynch Source i just made the short cuts easy to come back too.
How do I remove the Chinese text-to-speech engine? It has highly annoying Chinese voices trying to speak English, and by default it's being used over other installed TTS engines.
marcovth2 said:
How do I remove the Chinese text-to-speech engine? It has highly annoying Chinese voices trying to speak English, and by default it's being used over other installed TTS engines.
Click to expand...
Click to collapse
if you check step 3 you will find the breeno apps you got to remove all that.
You know how to change the launcher?
Arn0ldx said:
You know how to change the launcher?
Click to expand...
Click to collapse
yes its possible but i don't recommend because your home button will not work and will hang the phone ! if you still want it let me know i can add it later to first post!
kkarnaout said:
yes its possible but i don't recommend because your home button will not work and will hang the phone ! if you still want it let me know i can add it later to first post!
Click to expand...
Click to collapse
I see thank you I will try to uninstall the apps that you recommended
Thanks for this. I was thinking of doing this too but you've saved me the trouble. I was busy trying to compile a version of Lawnchair with the applicationId of com.oppo.launcher to try and trick the phone in to bypassing the home gesture issue but without much success.
The home button (virtual keys) are fine as long as you have another launcher installed when you remove the oppo one. The upward gesture swipe to homescreen will not work (doesn't hang the phone, just fails and brings the last app back up), though you can long swipe up (recents) and click on the empty space to get back to the launcher but I ended up going with the virtual keys.
Can it fix the login of CN rom?
I can't login cause they need phone 86+ from china it will paid the number that we login too.
I tried to use free sms received but yes it need too pay to login with Chinese number.
Stanz3k said:
Thanks for this. I was thinking of doing this too but you've saved me the trouble. I was busy trying to compile a version of Lawnchair with the applicationId of com.oppo.launcher to try and trick the phone in to bypassing the home gesture issue but without much success.
The home button (virtual keys) are fine as long as you have another launcher installed when you remove the oppo one. The upward gesture swipe to homescreen will not work (doesn't hang the phone, just fails and brings the last app back up), though you can long swipe up (recents) and click on the empty space to get back to the launcher but I ended up going with the virtual keys.
Click to expand...
Click to collapse
Thank you, I was able to uninstall oppo launcher having Nova launcher installed
kkarnaout said:
yes its possible but i don't recommend because your home button will not work and will hang the phone ! if you still want it let me know i can add it later to first post!
Click to expand...
Click to collapse
you can still use swipe navigation but the "swipe from both sides" cant be used you have to use either the back on left or right option.
Nova works flawless for me
Create oppo id
Numslick555 said:
Can it fix the login of CN rom?
I can't login cause they need phone 86+ from china it will paid the number that we login too.
I tried to use free sms received but yes it need too pay to login with Chinese number.
Click to expand...
Click to collapse
You can totally create an account on their web page and login on the phone, so you can get the added services and avoid their pesky login requirements. Also ig you don't want to use your phone number, use twilio or something like that
URL="https://id.oppo.com/register/sms?type=1"
Hmmm, my ringtones don't work anymore
danvalang said:
Hmmm, my ringtones don't work anymore
Click to expand...
Click to collapse
its cause you uninstalled file manager had same issue when i had my reno 10x
also you can remove com.coloros.athena (this will keep things running in background helps notifications come through without delay only change is when you pull up recents you have to manually swipe each app away to close cause the X at the bottom no longer works)
Another thing is you do not have to Factory reset your phone to get apps back since you technically are not uninstalling things just disabling them. go back to the adb command window and type following command "adb shell cmd package install-existing (name of package you disabled)" and this will re-enable them.
Hope this helps
Why do we need to uninstall file manager? they are useful arent they?
kkarnaout said:
Disclaimer :
PHP:
* I'm not responsible for bricked devices, dead SD cards, thermonuclear war, or you getting fired because the alarm app failed (like it did for me...).
* Your warranty will be void if you tamper with any part of your device / software.
Objective :
The following is for all who have a CN Version RealMe X2pro and want to change to EU Rom and not able like myself for the time being.
I'll provide a step by step Guide to remove all unwanted Chines system apps related to RealMe or Oppo and what to install to get a somewhat of clean and working build that would still get OTA and will be a better experience.
I hope its useful as that was the only way for me to use my CN version phone.
What you need First to be done:
Make sure google play Store is installed.
Make sure you are on the latest update. "RMX1931_11_A.12" even if you do OTA update nth will be affected.
Source all credits to this post.
What you need to do Second:
1) Install the USB drivers for your device (Google has a list of some universal USB drivers here)
2) Download the ADB binary for your particular OS (Windows, Mac, Linux)
3) Extract the zip file into a folder that you can quickly access.
4) On your phone, go to Settings and tap on About Phone. Find the Build Number and tap on it 7 times to enable Developer Options.
5) Now enter Developer Options and find USB Debugging. Enable it.
6) Open CMD at the location where you downloaded point 2 and point 3
The Source link has even more details ill stop at this point and jump to the Third step with what we need to delete.
Step Three :
After CMD is open on the designated folder where you extracted the zip file:
Commands first set:
PHP:
* adb devices
* adb shell
you will see your device details "[email protected]:/ $"
click the source link if you need visual details
Commands second set:
PHP:
Now copy past hit enter part for the following after each other
* pm uninstall -k --user 0 com.oppo.quicksearchbox ----> This will remove the single swip from top to bottom search that has lots of Chinese in it
* pm uninstall -k --user 0 com.coloros.assistantscreen ---->This will remove the breeno assistant
* pm uninstall -k --user 0 com.coloros.smartdrive ---->This will remove the breeno assistant drive
* pm uninstall -k --user 0 com.coloros.directui ---->This will remove the breeno assistant
* pm uninstall -k --user 0 com.coloros.ocrscanner ---->This will remove the breeno assistant
* pm uninstall -k --user 0 com.coloros.speechassist ----->This will remove the breeno assistant
* pm uninstall -k --user 0 com.nearme.browser ------>This will remove the browser
* pm uninstall -k --user 0 com.oppo.market ---->This will remove App Market
* pm uninstall -k --user 0 com.coloros.findmyphone ---->This will remove find my phone service
* pm uninstall -k --user 0 com.realme.findphone.client2 ----> This will remove Find my Phone
* pm uninstall -k --user 0 com.coloros.filemanager ----> This will remove File Manager
* pm uninstall -k --user 0 com.coloros.wallet ----> This will remove the wallet
* pm uninstall -k --user 0 com.nearme.themestore ---> This will remove Themes
* pm uninstall -k --user 0 com.sohu.inputmethod.sogouoem ----> This will remove the Keyboard make sure you have another one installed.
Those area the apps that i found annoying and made me hate the UI.
Step Four:
Now since everything is removed you ether clone your old phone using the app or just start downloading your apps from Google play Store.
for the swipe down the moment you install "Google" from play store it will directly replace it with google search.
Note: In case anything happened you can always just do a hard rest and you are back to normal
Let me know how helpful this is to you guys. and if you need to check anything else to update this post.
This is how i am actually enjoying my RealMe X2pro now.
again all thanks and credit to @ Doug Lynch Source i just made the short cuts easy to come back too.
Click to expand...
Click to collapse
Do you try to reboot, and it will cause error?
necsynx said:
Do you try to reboot, and it will cause error?
Click to expand...
Click to collapse
there is no issues at all, and its working perfectly, frankly i removed the launcher and a few items only, and its working amazing. you need to test it out a few times to get it to the place you want.
kkarnaout said:
there is no issues at all, and its working perfectly, frankly i removed the launcher and a few items only, and its working amazing. you need to test it out a few times to get it to the place you want.
Click to expand...
Click to collapse
Whats the launcher app name?
necsynx said:
Whats the launcher app name?
Click to expand...
Click to collapse
I found it ..
Its com.oppo.launcher
Phone and Message App
Is it possible to get rid of the phone and message app, the browser app?
Rifat Rezwan said:
Is it possible to get rid of the phone and message app, the browser app?
Click to expand...
Click to collapse
yes its shown in first post for browser, as for phone and messages its not recommended but if u want let me know ill get u there name

Debloat?

Now that CCSW is dead, are there any good debloat ADB scripts around?
subbed
What's CCSW?
a good foundation script
https://forum.xda-developers.com/galaxy-note-9/how-to/note-9-debloat-bash-script-t3907659
I used this one from the S20 thread
https://forum.xda-developers.com/galaxy-s20/how-to/how-to-ultimate-adb-debloating-thread-t4089089
This new tool looks promising: ADB AppControl https://forum.xda-developers.com/an...easy-management-android-applications-t4147837
Good debloat script
raul6 said:
a good foundation script
https://forum.xda-developers.com/galaxy-note-9/how-to/note-9-debloat-bash-script-t3907659
Click to expand...
Click to collapse
This is indeed a very good script from which to pick and choose what you debloat and is by far the best one I have found. What I like about it is that there is a helpful description of what the package does.
I have gone down the ADB debloat route with my Note 20 Ultra
bud7dha said:
This new tool looks promising: ADB AppControl https://forum.xda-developers.com/an...easy-management-android-applications-t4147837
Click to expand...
Click to collapse
This worked way better then expected.
I'm not new to ADB, but having the simple GUI to see what you are doing is amazing.
Was able to de-bloat to my desire with no problems at all!
Thanks for sharing!
or you could use package disabler pro from the google store which is even easier.
umx said:
or you could use package disabler pro from the google store which is even easier.
Click to expand...
Click to collapse
However, you have to keep re-puchasing it which is dull :crying:
pdagenius said:
However, you have to keep re-puchasing it which is dull :crying:
Click to expand...
Click to collapse
I had to purchase for note 9, repurchase for s10 and purchase again for the Note 10 but that one has now worked for the s20 and the note 20. So keeping fingers crossed lol.
If you are on AT&T this might help. I just downloaded ADB and ran the commands below. I hate not having the option of removing apps!
I removed all AT&T preinstalled apps + Samsung Browser, Chrome, Flipboard, and OneDrive.
pm uninstall --user 0 flipboard.boxer.app
pm uninstall --user 0 com.att.callprotect
pm uninstall --user 0 com.att.thanks
pm uninstall --user 0 net.aetherpal.device
pm uninstall --user 0 com.att.iqi
pm uninstall --user 0 com.android.chrome
pm uninstall --user 0 com.att.personalcloud
pm uninstall --user 0 com.att.dh
pm uninstall --user 0 com.synchronoss.dcs.att.r2g
pm uninstall --user 0 com.att.myWireless
pm uninstall --user 0 com.att.mobilesecurity
pm uninstall --user 0 com.att.tv
pm uninstall --user 0 com.att.csoiam.mobilekey
pm uninstall --user 0 com.att.android.attsmartwifi
pm uninstall --user 0 com.sec.android.app.sbrowser
pm uninstall --user 0 com.sec.android.app.sbrowser
pm uninstall --user 0 com.dti.att
pm uninstall --user 0 com.microsoft.skydrive
umx said:
or you could use package disabler pro from the google store which is even easier.
Click to expand...
Click to collapse
Was using CCSW but stopped working but went back to Package Disabler Pro. I am proficient with adb but don't want yo delete something with it and find out I now need it. Much easier to just disable the app and if for some reason you need it back just reenable it.
ggrant3876 said:
Was using CCSW but stopped working but went back to Package Disabler Pro. I am proficient with adb but don't want yo delete something with it and find out I now need it. Much easier to just disable the app and if for some reason you need it back just reenable it.
Click to expand...
Click to collapse
i used to use ccsw they pulled his license not sure why. I prob disabled 80 or so things.. giving more like pure android after that.. and better battery
ggrant3876 said:
Was using CCSW but stopped working but went back to Package Disabler Pro. I am proficient with adb but don't want yo delete something with it and find out I now need it. Much easier to just disable the app and if for some reason you need it back just reenable it.
Click to expand...
Click to collapse
From what I see for the Adb commands, the is a package install command which works in a similar way to disable /enable and therefore uninstall is not an issue as the package remains on your phone unless you are rooted.
If you are a little organised and keep a list of what you uninstalling it is not an issue in my opinion.
pdagenius said:
From what I see for the Adb commands, the is a package install command which works in a similar way to disable /enable and therefore uninstall is not an issue as the package remains on your phone unless you are rooted.
If you are a little organised and keep a list of what you uninstalling it is not an issue in my opinion.
Click to expand...
Click to collapse
What I've seen on here before, sometimes they use this "pm uninstall -k --user 0 com.my.demo.app". I'm just a belts and suspenders kind of gut I guess!

Categories

Resources