Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I read it and thought Titanium Backup was just one of the options. I was under the impression that one I was rooted I would be able to just drag Blockbuster and NOVA down to remove or go into Apps and click Uninstall.
Nope, that doesn't work for system apps. To truly uninstall, you must either do what I suggested above or use the remove option in titanium backup. If you do that, though, you will not be able to get it back.
No matter what you do, make a nandroid backup, first.

Technically, if you wanted you could do it all through adb, but that would require you to know how to do that.
Basically you would do the following:
Open a command prompt and do the following:
cd C:\android-sdk-windows\tools
adb remount
adb shell (this should return a # sign. If not, you are not rooted)
cd /system/app
ls (this will list all of the apps you have. The apps are apk files)
rm nameofapkyouwanttoremove.apk
That should just remove the apk all together and "uninstall" the app. Keep in mind though, there are some apps you cannot/should not remove.
Granted, the above was how I sometimes did it on my Hero before I got the Evo, and I haven't tested on Evo yet, but adb hasn't changed so this should still work![]()