When building desktop or web apps, its easy to add fake hosts file entries so apps will connect to dev servers instead of production ones - is something similar possible for Android apps?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You can't edit the /etc/hosts file on most Android devices, since you normally don't have root access.

A better option is to just build a preference into your application that allows you to specify which server your application can use when establishing it's connection.

link|improve this answer
Is it possible to check if an app is being debugged and switch hostnames that way? – Eno Feb 23 '10 at 21:10
Yes. See android.os.Debug.isDebuggerConnected(): developer.android.com/reference/android/os/…;() – Trevor Johns Feb 23 '10 at 21:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.