What's new
DroidForums.net | Android Forum & News

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

freezing bloatware without losing any of it

OwlD2G

Member
How do I freeze bloatware without losing any of it? Is there a list of bloatware somewhere? What app should I use to freeze bloatware?

Thank you.
 
How do I freeze bloatware without losing any of it? Is there a list of bloatware somewhere? What app should I use to freeze bloatware?

Thank you.

Don't freeze it. Just get Root explorer from the market and change the extension from .apk to three other letters. That will keep it from showing on your screen and if you need to bring them back for an upgrade just change the extensions back to .apk.
 
An even easier method in my opinion is to create a new directory and move all of the unwanted apps to that directory.

I put mine is /system/app/APPS.
That way when I need to put them back for an update I can go to the terminal
# cd /system/app/APPS
# mv * ..
 
with your rooted droid, start adb shell

Replace "Whatever.apk" with the bloat you want to "freeze"

Code:
su
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
cd /system/app/
mv Whatever.apk Whatever.apk.bak
mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
exit
exit
This thread has a ton of info
 
How do I freeze bloatware without losing any of it? Is there a list of bloatware somewhere? What app should I use to freeze bloatware?

Thank you.

Don't freeze it. Just get Root explorer from the market and change the extension from .apk to three other letters. That will keep it from showing on your screen and if you need to bring them back for an upgrade just change the extensions back to .apk.

tried to buy it; never received it; got refund
 
How do I freeze bloatware without losing any of it? Is there a list of bloatware somewhere? What app should I use to freeze bloatware?

Thank you.

Don't freeze it. Just get Root explorer from the market and change the extension from .apk to three other letters. That will keep it from showing on your screen and if you need to bring them back for an upgrade just change the extensions back to .apk.

tried to buy it; never received it; got refund

Download a terminal emulator and do it manually.
I think it's easier to just move them to a different directory than renaming.
 
Don't freeze it. Just get Root explorer from the market and change the extension from .apk to three other letters. That will keep it from showing on your screen and if you need to bring them back for an upgrade just change the extensions back to .apk.

tried to buy it; never received it; got refund

Download a terminal emulator and do it manually.
I think it's easier to just move them to a different directory than renaming.

Does it have to be done item by item, or can it be done in 'batches'? Also, is there apost of a comprehensive list of apps to freeze?

Thank you.
 
Last edited:
tried to buy it; never received it; got refund

Download a terminal emulator and do it manually.
I think it's easier to just move them to a different directory than renaming.

Does it have to be done item by item, or can it be done in 'batches'? Also, is there apost of a comprehensive list of apps to freeze?

Thank you.

It will have to be done per app except for those that start with the same letters.
Ex: mv Car* will move CarDock.apk and CarDock.odex.
There is an app list somewhere, you can google it.
 
Back
Top