Delete any Stock App
Get rid of those seeded apps from Verizon or delete an app from the drawer that you never use with this guide.
Guide
- Make sure your Droid is rooted and you have ADB working.
- Open up a new Terminal window and enter this command line code, line by line, pressing return after each line:
export PATH=~/tools
adb shell
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
cd /system/app
ls - Now look at what
lsdid. It shows all the app packages you have on your Droid. Find the one you want to remove and run the following code for each one:rm APP_NAME.pkg
Remove Visual Voicemail withrm VVMStub.pkg
Remove Amazon MP3 withrm com.amazon.mp3.apk
Remove Corporate Calendar withrm CorpCal.apk -
Now finish up:
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
sync
reboot
