Hide Unused App In Launcher

Hi Everyone

I have just bought a nova pro recently and have disable a few apps which won’t be use. However I notice that the apps still show up in the launcher. Is there a way to hide them ? Thank you.

Hi!

You must unnistall the app as an android device:

  1. Active USB debugging in the Boox.

  2. Connect your Boox to your PC.

  3. Start the ADB daemon and create a shell:

    adb devices
    adb shell

Now use the pm command to control the installed apps.

  1. List apps:

> pm list packages

  1. Uninstall an app:

> pm uninstall -k --user 0 <name of package>

You must do a list of the uninstalled apps, in that way you can reinstall them later. For instance I’ve uninstalled Email app:

> pm uninstall -k --user 0 com.android.email

1 Like

thank you this does it :smiley: