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
2 Likes