Can anyone suggest a solution for emulator to get my own local IP (not 10.0.2.15)? But i want to get my actual IP of my system. Is there any solution to it?
Asked
Active
Viewed 309 times
0
-
see this [post][1] [1]: http://stackoverflow.com/questions/850650/reliable-method-to-get-machines-mac-address-in-c-sharp – Triode Feb 16 '12 at 03:59
1 Answers
0
The emulator is using a private network, which you already found out, however you can fire an intent to get your public IP address
$ adb shell am start -a android.intent.action.WEB_SEARCH -e query "what is my ip"
Running this is the emulator's shell will open the Browser and show you your public IP address.

Diego Torres Milano
- 65,697
- 9
- 111
- 134
-
Thank you for relying. Can you please elaborate your answer little more, since we are new to android we are not so clear – kdr Feb 16 '12 at 06:35