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

Root List of what not to delete?

I am reading this and will be modifying the Step by Step Rooting Guide just as soon as I verify that this is correct.

I am interested in knowing if either of you have the Pro version of Titatium Backup.

I don't, I'm using the free version. I will get the pro version down the line and freeze the apps instead of un-installing them.

Like I said above, no biggie for me but it could screw someone else up. I may have to flash to stock for the update to 2.2.

Robb
 
How do I backup my contacts that are on the phone with Titanium Free?

I want a fool proof method so if I flash back to stock I can replace them. I don't want to sync them to Gmail either.

They (contacts) are really all I care about on the phone.

TIA.
Robb
 
I am reading this and will be modifying the Step by Step Rooting Guide just as soon as I verify that this is correct.

I am interested in knowing if either of you have the Pro version of Titatium Backup.

Yes I do, I bought it for myself after I was let down by the free version. Then I wrote bloat freezer since so many people pay $6 for TB Premium ONLY to freeze and that is a lot of money just for that one feature. (Of course it comes with other features but a lot of people buy it just for the freeze feature.)
 
Yes I do, I bought it for myself after I was let down by the free version. Then I wrote bloat freezer since so many people pay $6 for TB Premium ONLY to freeze and that is a lot of money just for that one feature. (Of course it comes with other features but a lot of people buy it just for the freeze feature.)

So you are the developer of Bloat Freezer? Is it available at the market?
 
Update: It's been a few days since I uninstalled Canvas and I've noticed the phone is more responsive + I have more memory free when I open Task Manager. I'm currently running LauncherPro with Light Grid Live Wallpaper (look it up if you want a trippy background that runs smoothly).

And as vsofiy said, if this somehow causes the 2.2 OTA update not to work, we can always restore back to the stock rom (which is quick and easy to do) and upgrade from there. But in the meantime, I wanna get the most performance out of the phone that I can with 2.1. I demand satisfaction! :-p

But seriously, I got my girlfriend an Ascend for Xmas (after getting mine in early November) and I forgot how slow the phone runs with the stock Cricket apps til I tried using hers.
 
Update: It's been a few days since I uninstalled Canvas and I've noticed the phone is more responsive + I have more memory free when I open Task Manager. I'm currently running LauncherPro with Light Grid Live Wallpaper (look it up if you want a trippy background that runs smoothly).

And as vsofiy said, if this somehow causes the 2.2 OTA update not to work, we can always restore back to the stock rom (which is quick and easy to do) and upgrade from there. But in the meantime, I wanna get the most performance out of the phone that I can with 2.1. I demand satisfaction! :-p

But seriously, I got my girlfriend an Ascend for Xmas (after getting mine in early November) and I forgot how slow the phone runs with the stock Cricket apps til I tried using hers.


Cool. I'm convinced now
 
I uninstalled canvas 2 days ago and haven't had any problems since. You just have to reboot after uninstalling because you get alot of force closes. After that it should all be ok.
I'm now using ADW launcher and everything seems to be at least 20% faster.

Did you ever try LauncherPro before you got ADW? I know a lot of people really like ADW. I just wondered what the main difference is.

I wish LP had an icon program to go with it that was any good. I d/lded an app called LauncherPro Icons and it's really lame IMO. There are some really good ones out there for customizing your desktop but I can't seem to find one that works with the Ascend. Bummer!!!
 
Did you ever try LauncherPro before you got ADW? I know a lot of people really like ADW. I just wondered what the main difference is.

I wish LP had an icon program to go with it that was any good. I d/lded an app called LauncherPro Icons and it's really lame IMO. There are some really good ones out there for customizing your desktop but I can't seem to find one that works with the Ascend. Bummer!!!


ADW has more features and customizations. It looks like froyo. But LP is a lot smoother than ADW. DOESNT MATTER because LP is getting a big update in the coming weeks that adds many useful features
 
ADW has more features and customizations. It looks like froyo. But LP is a lot smoother than ADW. DOESNT MATTER because LP is getting a big update in the coming weeks that adds many useful features

Did you see my pics I posted of my desktop? :)
 
Yup. I was gonna ask you how you took the screenshots. P.S. have you tried Glass as your dock background in LP Preferences?

I downloaded an app called 'Screenshot' from the market. It is very self explanatory. It took these by just shaking my phone after I set the Screenshot app to that setting.

It's very easy to do.
 
I downloaded an app called 'Screenshot' from the market. It is very self explanatory. It took these by just shaking my phone after I set the Screenshot app to that setting.

It's very easy to do.


Oh yeah, i remember now. I thought ive seen that app somewhere.
 
Can someone please help me, my phone is HTC Dream Unlocked from rogers now on bell phone works fine, i updated the APN settings data works fine but phone always has roaming indicator even on bell..

Okay so I found this info and the problem can be fixed but i am a beginner, and have no idea what i am doing can some one please help this is what i found:

The problem is that the "roaming" indicator is a function both of the SIMCARD as well as the phone's firmware.
See, on the belus network, there is one active MCC, but it is used by multiple "providers" (even though we know that they are legitimately all the same provider), so you have 4 or more "networks" that are served by the same network, and each of these four virtual networks have SIMCARDS coded with ITS OWN MCC.

In order to determine the roaming status, the PHONE compares the NETWORK MCC with the SIM MCC. If they DON'T match, it assumes that you are roaming.

In some cases, the SIMCARD can identify to the phone that despite the NETWORK and SIM MCC's not matching, you STILL aren't roaming, but belus likes to screw with you (as does robbers), so they keep this determination within their phone's firmware -- i.e., to make stupid people thing that their non-belus phone is somehow inferior/incompatible.

Of course, there is a side-effect to this issue: If you actually *ARE* roaming, it isn't immediately OBVIOUS. You also can't do things like "disable data roaming", which would save you money in the event that you found yourself roaming.

The solution, of course, is to modify the code to recognize that the NETWORK and SIM MCC's are equal, even though they aren't.

You should look at the isRoamingBetweenOperators() function at frameworks/base/telephony/java/com/android/internal/telephony/gsm/GsmServiceStateTracker.java, specifically, the code within the 'try' block -- you can see "equalsMcc = sim.equals(operator)". Make it "equalsMcc = sim.equals(operator) || (sim.equals(what_it_actually_is) && operator.equals(what_it_actually_is))". Doing this will override the roaming check in your specific case, while NOT breaking it for other networks.

Note: It may also be necessary to override the equalsOnsl and/or equalsOnss values -- you can do those in the exact same way, however, I doubt that it will be necessary. Much more likely that it is the MCC alone that is causing problems.

HOW DO I DO THIS STUFF I AM AN COMPLETE BEGINNER NEED STEP BY STEP INSTRUCTIONS.
 
Can someone please help me, my phone is HTC Dream Unlocked from rogers now on bell phone works fine, i updated the APN settings data works fine but phone always has roaming indicator even on bell..

Okay so I found this info and the problem can be fixed but i am a beginner, and have no idea what i am doing can some one please help this is what i found:

The problem is that the "roaming" indicator is a function both of the SIMCARD as well as the phone's firmware.
See, on the belus network, there is one active MCC, but it is used by multiple "providers" (even though we know that they are legitimately all the same provider), so you have 4 or more "networks" that are served by the same network, and each of these four virtual networks have SIMCARDS coded with ITS OWN MCC.

In order to determine the roaming status, the PHONE compares the NETWORK MCC with the SIM MCC. If they DON'T match, it assumes that you are roaming.

In some cases, the SIMCARD can identify to the phone that despite the NETWORK and SIM MCC's not matching, you STILL aren't roaming, but belus likes to screw with you (as does robbers), so they keep this determination within their phone's firmware -- i.e., to make stupid people thing that their non-belus phone is somehow inferior/incompatible.

Of course, there is a side-effect to this issue: If you actually *ARE* roaming, it isn't immediately OBVIOUS. You also can't do things like "disable data roaming", which would save you money in the event that you found yourself roaming.

The solution, of course, is to modify the code to recognize that the NETWORK and SIM MCC's are equal, even though they aren't.

You should look at the isRoamingBetweenOperators() function at frameworks/base/telephony/java/com/android/internal/telephony/gsm/GsmServiceStateTracker.java, specifically, the code within the 'try' block -- you can see "equalsMcc = sim.equals(operator)". Make it "equalsMcc = sim.equals(operator) || (sim.equals(what_it_actually_is) && operator.equals(what_it_actually_is))". Doing this will override the roaming check in your specific case, while NOT breaking it for other networks.

Note: It may also be necessary to override the equalsOnsl and/or equalsOnss values -- you can do those in the exact same way, however, I doubt that it will be necessary. Much more likely that it is the MCC alone that is causing problems.

HOW DO I DO THIS STUFF I AM AN COMPLETE BEGINNER NEED STEP BY STEP INSTRUCTIONS.

Hi Harman! We would love to be of help but you are in the wrong forum. If you go to the link here for your phone I'm sure they will be happy to help you. FYI...your phone is also called the T-Mobile G1 aka HTC Dream. :)

Good Luck!

T-Mobile G1 - Android Forums
 
Whats the difference between uninstalling and deleting. After I uninstall an app the option to delete it is still there. I don't get it.
 
Back
Top Bottom