Advertisement
metalx1000

Android remove/uninstall system app with TWRP and ADB

May 27th, 2020
1,739
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | None | 0 0
  1. #Android remove/uninstall system app with TWRP and ADB
  2. #once booted into TWRP, mount system as writable.
  3.  
  4. #example, removing Google Photos (dir my be /system/app/ on some systems)
  5. cd /system/system/app/
  6. rm -rf Photos
  7. cd /data/data/
  8. rm -fr com.google.android.apps.photos
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement