Tirth Rami
Tirth Rami

Reputation: 273

how do I unblock the app blocked with adb shell pm block command?

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.

Upvotes: 4

Views: 6107

Answers (1)

Shrubz
Shrubz

Reputation: 66

You can use the pm unblock command:

adb shell pm unblock com.sonymobile.advancedwidget.entrance

Upvotes: 5

Related Questions