Android Bulk Remove Permissions For All Apps
First up, if you haven't already set up ADB, set it up by following this post:
xda-developers.com/install-adb-windows-macos-linux
Next, Once that is done also set up developer mode on your phone - also in that same blog.
Finally once all that is done,
Go to the developer options and enable USB debugging.
Finally, Run the below command in your terminal from your laptop.
adb shell pm reset-permissions
And all the permissions are reset.
Warnings:
- This affects every app, not just one, and can break things until you re‑grant needed permissions.
- System and preinstalled apps may still retain some non‑runtime (install‑time) permissions that cannot be revoked without root or uninstalling the app.

Comments
Post a Comment