Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I started a local http server on Android and it can be reached by other computers in the same local network. But if I try to access this server using opera on the same phone, it won't work. So this means we are not able to access localhost on Android? Thanks!

share|improve this question
Duplicate of test the localhost in android emulator – Christopher Dec 25 '10 at 19:44
Since I am using a device, it is not duplicated. I also tried 10.0.2.2 but still get nothing. – echo Dec 30 '10 at 20:58

2 Answers

up vote 8 down vote accepted

You shoud use next IP 10.0.2.2

share|improve this answer
I don't think so. I am using a real device, not emulator. Thanks for the answer though. – echo Dec 26 '10 at 5:05
Btw, you may try start a http server using an app called kWS, and access it from the same phone browser. It always fails on my phone. – echo Dec 30 '10 at 23:20
1  
It was my fault! Opera on my device cannot access localhost, but the default browser can. – echo Jan 3 '11 at 2:22
Not work on my KindleFire, browser Dolphin. – Emerald214 May 16 '12 at 6:51

Just check this http://developer.android.com/guide/developing/devices/emulator.html#networkaddresses

If ur app running in localhost:3000, then try to use as 10.0.2.2:3000 in your android emulator

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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