Reputation: 273
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
Reputation: 66
You can use the pm unblock
command:
adb shell pm unblock com.sonymobile.advancedwidget.entrance
Upvotes: 5