Just as the question says. I was curious because my development phone will also be my everyday phone (Galaxy S2) so of course I would want to be sure I’m voiding my warranty for a good reason.
Is it also simple to reverse roots without bricking the phone. Will unrooting be detectable, or will it look as it did beforehand? Also, what does unrooting do to installed apps that require root? Are they merely unable to launch until the phone is rooted again?
I have two phones that I use when developing at work: my personal phone (an EVO) and a phone my employer bought (a Fascinate). I spend most of my time developing and testing on my EVO because it’s rooted. The main thing that you lose without root is that you can’t access
/data, which can be a pain when debugging. Root also lets you easily install busybox from the Market, which contains a lot of useful tools (likegrepandcp).As an example: if you save any data to your app’s default file directory, it will live in
/data/data/<package_name>/files. Trying to debug an issue when loading data that’s stored in a file gets hugely obnoxious when you can’t actually see the contents of the file, but you won’t have permission to view it without root. The same is true of any databases that you create for an app (they live in/data/data/<package_name>/databasesby default).So in my personal/professional opinion, it’s helpful to have at least one rooted device for development so that you can access files and directories you would otherwise not have permission to see.