• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root Removing apps in leaked 2.2

Anyone know whats safe to remove yet? Also would anyone be kind enough to post what we would need to type in cmd to remove them? Any help would be appreciated.
 
i removed City ID, amazonmp3, vznav, and mail. no issues yet. i also used autostarts to stop a few apps from starting up randomly.

i also removed geniewidget, since we now have the htc news widget. almost forgot.
 
mkdir /system/app.disabled
mv /system/app/CityID.apk /system/app.disabled/
mv /system/framework/com.cequint.platform.jar /system/app.disabled/
mv /system/framework/com.cequint.platform.odex /system/app.disabled/
mv /system/app/HtcFoot* /system/app.disabled/
mv /system/app/HtcTwit* /system/app.disabled/
mv /system/app/*htc.Twit* /system/app.disabled
mv /system/app/Quickoffice.apk /system/app.disabled/
mv /system/app/teeter* /system/app.disabled/
mv /system/app/HtcCarPanel* /system/app.disabled
mv /system/app/VVM* /system/app.disabled


NEW STUFF TO REMOVE:
mv /system/app/AppSharing* /system/app.disabled/
mv /system/app/*htc.FMRadioWidget* /system/app.disabled
mv /system/app/*htc.StockWidget* /system/app.disabled
mv /system/app/GenieWidget.apk /system/app.disabled

VZNAV:
mv /system/app/VzNav.apk /system/app.disabled
http://androidforums.com/roms-incre...k-2-2-sense-everything-works.html#post1245442
 
Use ADB shell. Crazydog quoted me, while taking out my reference... <angry>

This won't work via terminal, since the /system partition can't be active while you are moving stuff, so you have to do it via recovery, after mounting /system.
 
yeah i was going to remove vznav but since I have a lot of free space I don't really care, one day I'll do it, so yeah I would like to know a safe way to remove it :-D
 
yeah i was going to remove vznav but since I have a lot of free space I don't really care, one day I'll do it, so yeah I would like to know a safe way to remove it :-D

My method is safe. It doesn't delete anything, just moves it to a new directory. Then if you want to put it back, you can, quickly and easily. :)
 
what is the command to view the entire app directory? I tried moving the facebook, twitter app's with the wild cards it tells me it cant find that directory. I want to just go in and remove the .apk etc.
 
mkdir /system/app.disabled
mv /system/app/CityID.apk /system/app.disabled/
mv /system/framework/com.cequint.platform.jar /system/app.disabled/
mv /system/framework/com.cequint.platform.odex /system/app.disabled/
mv /system/app/HtcFoot* /system/app.disabled/
mv /system/app/HtcTwit* /system/app.disabled/
mv /system/app/*htc.Twit* /system/app.disabled
mv /system/app/Quickoffice.apk /system/app.disabled/
mv /system/app/teeter* /system/app.disabled/
mv /system/app/HtcCarPanel* /system/app.disabled
mv /system/app/VVM* /system/app.disabled


NEW STUFF TO REMOVE:
mv /system/app/AppSharing* /system/app.disabled/
mv /system/app/*htc.FMRadioWidget* /system/app.disabled
mv /system/app/*htc.StockWidget* /system/app.disabled
mv /system/app/GenieWidget.apk /system/app.disabled

VZNAV:
mv /system/app/VzNav.apk /system/app.disabled


I am getting this trying to remove the apps:
C:\Documents and Settings\user>adb shell
$ mkdir /system/app.disabled
mkdir /system/app.disabled
mkdir failed for /system/app.disabled, Read-only file system

Why isn't it letting me make the directory and move the files?
 
Boot into clockworks recovery, then plug into the computer.
Select partitions -> Mount /system

Then, on the computer:
Run->adb shell->su

And then you can perform these commands.
 
what is the command to view the entire app directory? I tried moving the facebook, twitter app's with the wild cards it tells me it cant find that directory. I want to just go in and remove the .apk etc.

I use andExplorer while my phone is up to make a list of the files I want to move.
 
mv /system/etc/CDROM.ISO /system/app.disabled/

This will stop the annoying prompt to download VZ software when hooking up to computer in charge mode. Thanks to ihtfp69 from XDA for the original find and also najaboy (AF & XDA) for passing it along to me.

It's a little different not being an .apk but the move command still works the same. If you want to make a separate directory fine, but I used the app.disabled placement to have everything in one spot and it worked great.
 
mv /system/etc/CDROM.ISO /system/app.disabled/

This will stop the annoying prompt to download VZ software when hooking up to computer in charge mode. Thanks to ihtfp69 from XDA for the original find and also najaboy (AF & XDA) for passing it along to me.

It's a little different not being an .apk but the move command still works the same. If you want to make a separate directory fine, but I used the app.disabled placement to have everything in one spot and it worked great.

Nice find! And thanks for giving credit to the original finders. :cool:

I'll have to add this to the list.
 
i removed City ID, amazonmp3, vznav, and mail. no issues yet. i also used autostarts to stop a few apps from starting up randomly.

i also removed geniewidget, since we now have the htc news widget. almost forgot.

How did you remove Amazon? And do you know how to remove Skype?
 
How did you remove Amazon? And do you know how to remove Skype?

in adb shell:
mv /system/app/amazonmp3.apk /system/app.disabled/
mv /system/app/VZW_Skype.apk /system/app.disabled/


also, for the cdrom.iso fix, to keep it clean, i also created a etc.disabled folder in system and moved it to there so i know where it goes if i need to put it back ever... for those that want to do that, here you go:

in adb shell:
mkdir /system/etc.disabled
mv /system/etc/CDROM.ISO /system/etc.disabled/
 
Heres what im doing

run
cmd
cd \sdk \tools
adb shell su

then it gives me this

~#

i mounted the system partion from clockwork
 
so it should look like this

~ # push mv /system/app/amazonmp3.apk /system/app.disabled/

if so it says

"app not found"?

thanks for the help, first time really in adb
 
This might be a stupid question but what's wrong with just running ASTRO file manager (or similar app) and going into /system/app/ then just opening the application file in App Manager and uninstalling?
 
so it should look like this

~ # push mv /system/app/amazonmp3.apk /system/app.disabled/

if so it says

"app not found"?

thanks for the help, first time really in adb

Remove the word push. Mv is a UNIX shell command for move. You're moving the amazonmp3.apk to another directory so Android will not load it.
 
This might be a stupid question but what's wrong with just running ASTRO file manager (or similar app) and going into /system/app/ then just opening the application file in App Manager and uninstalling?

Because /system cannot be mounted as RW unless you're in recovery.
 
Back
Top Bottom