5

How can I remove an app from the launcher of an rooted device ?

Chris Sherlock
  • 903
  • 5
  • 19

4 Answers4

3

It depends on what launcher you have, but maybe this will help:

https://play.google.com/store/apps/details?id=com.thinkyeah.apphider&hl=en

http://tricksnow.com/how-to-hide-apps-on-android-with-root-and-without-root/

And if you want to uninstall bloatware apps:

https://play.google.com/store/apps/details?id=zsj.android.systemappremover&hl=en

Mike
  • 592
  • 4
  • 12
3

i find this may it helps

    Uri uri = Uri.parse("package:com.domain.app");
    Intent i = new Intent(Intent.ACTION_DELETE, uri);
    startActivity(i);
Mostafa zamani
  • 101
  • 1
  • 10
0

To hide app icon from launcher we can do it in following way:

    PackageManager p = getPackageManager();
    ComponentName componentName = new ComponentName(this, com.apps.MainActivity.class);     
p.setComponentEnabledSetting(componentName,PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);

To un-hide app icon from launcher we can do it in following way:

PackageManager p = getPackageManager();
ComponentName componentName = new ComponentName(this, com.apps.MainActivity.class);
p.setComponentEnabledSetting(componentName, PackageManager.COMPONENT_ENABLED_STATE_ENABLED, PackageManager.DONT_KILL_APP);
shridutt kothari
  • 7,495
  • 2
  • 41
  • 59
0

Actually from android 10+, it is quite difficult to hide the app launcher icon. I have used the code of @shridutt kothari, just mentioned in the above comments. When the disable code runs, it only make the app launcher icon disabled not hidden. But you cannot launch it, it open the app info setting page when click the launcher icon.

Another way - This is another way to do that, make a app and run it as device owner mode. Then we can able to hide/remove the app launcher icon.

Visit the link- https://www.sisik.eu/blog/android/dev-admin/uninstalling-and-disabling-apps