4

I need to enable an app that I blocked using adb because my phone is force closing now. How do I reenable the app? I used the

adb shell pm block com.sonymobile.advancedwidget.entrance

command to block it.

Alex P.
  • 30,437
  • 17
  • 118
  • 169
Tirth Rami
  • 271
  • 4
  • 15
  • obviously `pm unblock com.sonymobile.advancedwidget.entrance` – Alex P. Oct 26 '14 at 17:19
  • Might be obvious, but difficult to find documentation on. In the end, better be careful with adb commands than just try something without knowing what will happen. – Wouter van Vliet Mar 17 '15 at 12:32
  • @WouterVanVliet,when we type "adb shell pm" in the shell,it will list the usage of pm command.And below "pm block PACKAGE_OR_COMPONENT" is "pm unblock PACKAGE_OR_COMPONENT" – wangqi060934 Apr 13 '15 at 09:23

1 Answers1

5

You can use the pm unblock command:

adb shell pm unblock com.sonymobile.advancedwidget.entrance
Alex P.
  • 30,437
  • 17
  • 118
  • 169
Shrubz
  • 66
  • 1