C3rd
Edit Android Hosts file
Posted: 7 Mar 2013, 22:54pm - ThursdayI have a project that needs to be compatible with mobile devices. What I want is to redirect my emulated android or AVD to my PC, like browsing http://grass.dev in the android browser, will lookup to my other PC in local network. This guide is for Windows and in my case I am using Windows 7. So, go to your installed directory of the Android SDK, then go to X:\...\sdk\platform-tools\ then cast the commands below (you will be using adb commands).
adb remount adb pull /system/etc/hosts /tmp/hostsAbove commands is to pull the hosts file from the android you currently running. Next thing you will do is edit the file. In my case,
127.0.0.1 localhost 192.168.7.126 grass.devThat's the content of my new hosts file. Next you need to push back the file to the android.
adb push /tmp/hosts /system/etcThat's it.. it should work. :)