0

Some apps in Application Manager are completely greyd out and cannot be disabled. Is there any way to override this?

polyglot
  • 157
  • 1
  • 8

1 Answers1

0

As your device is rooted, you might want to check some tools which help you on this task. Examples include Titanium Backup, which (next to Backup almost everything) can freeze apps (which is the same as "disabling" them), and App Quarantine, which is even dedicated to this job.

The two are just examples, there are more "tool boxes" out there capable of the job in question.

Another way (not requiring extra apps) is utilizing ADB for this: adb shell pm disable <package_name> could be used to disable an app (see also this answer).

Izzy
  • 91,166
  • 73
  • 343
  • 943