Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove app from launcher (on a rooted device) programmatically

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

like image 267
Chris Sherlock Avatar asked May 08 '16 19:05

Chris Sherlock


2 Answers

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

like image 162
Mike Avatar answered Nov 16 '22 01:11

Mike


i find this may it helps

    Uri uri = Uri.parse("package:com.domain.app");
    Intent i = new Intent(Intent.ACTION_DELETE, uri);
    startActivity(i);
like image 20
Mostafa zamani Avatar answered Nov 16 '22 00:11

Mostafa zamani