1

I did:

pm disable com.android.systemui

I get:

pm list packages -d
package:com.android.systemui

So it is disabled. Still I get:

ps | grep systemui                                            
u0_a71    2053  1183  462960 27552 ffffffff 40089a40 S com.android.systemui

so it is still running, even if I kill it, it restarts! How can it both be running and be disabled at the same time?

JohnyTex
  • 267
  • 1
  • 6
  • 16

2 Answers2

2

SystemUI.apk is an System app which needs to be always running to provide the Android UI as you know, like Navigation bar, Status Bar, even Wallpapers, and lots more ....

It's a very bad idea disabling it. Even if you disable it, it'll just restart.
If you remove it, your phone won't be having an UI.

How can it both be running and be disabled at the same time?

As far as the question is concerned, I think the current instance of the app will be running eventhough you disable waiting for the effect to take place on reboot.
But Android may not allow SystemUI being disabled during boot, by forcibly starting the app and its services.

If you are a developer/debugger and really want to disable it for some reason, this might help: https://stackoverflow.com/questions/28055413/can-i-disable-systemui-from-within-my-android-app

I think you can also Freeze it using apps like Link2SD :)

Gokul NC
  • 1,909
  • 3
  • 18
  • 30
0

A few apps like these are necessary to run the OS. So, no matter how hard you try, this will start again and again. In fact, this default setting is just to prevent your device from getting bricked or behaving abnormally.

Andrew T.
  • 15,988
  • 10
  • 74
  • 123
ghost_83
  • 51
  • 1
  • 5