You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you've Android KitKat or above and do not have root access, use adb in PC to execute this command:
adb shell pm block PACKAGE # for Android KitKat
adb shell pm hide PACKAGE # for Android Lollipop only
adb shell pm disable-user PACKAGE # alternative to `pm hide`; for Android Lollipop and above; this works just like disabling an app through Settings app
To reinstate the app:
adb shell pm unblock PACKAGE # for Android KitKat
adb shell pm unhide PACKAGE # for Android Lollipop and only if you used `pm hide` earlier
adb shell pm enable PACKAGE # for Android Lollipop and above
If you've Android KitKat or above and do not have root access, use adb in PC to execute this command:
To reinstate the app:
source
The text was updated successfully, but these errors were encountered: