I can’t figure out how to do this.
I went to:
WebADB
Clicked on interactive shell
Entered this command: adb shell pm disable-user —user 0 com.mudita.launcher
Then I get a message saying: adb: inaccessible or not found.
I’m doing this on a Mac.
Thanks for any help.
1 Like
If you are using WebADB, don’t type ADB, you are already accessing android OS and don’t need to control it with a terminal window on your computer (which required the ADB to tell it to talk to the phone os) so the command you are looking for while use WebADB is:
pm disable-user --user 0 com.mudita.launcher
3 Likes
Thank you so much, how do I enable it back? Does it have to be enabled to be able to update ? thanks!
1 Like
If using adb:
adb shell pm enable com.mudita.launcher
if using web adb:
pm enable com.mudita.launcher
And like I said in the other topic, not sure what happens after an update. But most likely nothing will happen or Mudita will re-enable the default launcher.
3 Likes
Thank you this is very helpful! 
1 Like