373

I have made a php script inside localhost and I am connecting that with httpClient but I am getting a problem.

Please tell me how can I connect to a php file at localhost from the emulator?

shim
  • 9,289
  • 12
  • 69
  • 108
Dharmendra
  • 33,296
  • 22
  • 86
  • 129

7 Answers7

891

Use 10.0.2.2 to access your actual machine.

As you've learned, when you use the emulator, localhost (127.0.0.1) refers to the device's own loopback service, not the one on your machine as you may expect.

You can use 10.0.2.2 to access your actual machine, it is an alias set up to help in development.

Joshua Pinter
  • 45,245
  • 23
  • 243
  • 245
lampShaded
  • 9,215
  • 2
  • 18
  • 12
88

Use 10.0.2.2 for default AVD and 10.0.3.2 for Genymotion

dKen
  • 3,078
  • 1
  • 28
  • 37
S raj
  • 921
  • 6
  • 6
81

Thanks, @lampShaded for your answer.

In your API/URL directly use http://10.0.2.2:[your port]/ and under emulator setting add the proxy address as 10.0.2.2 with the port number. For more, you can visit: https://developer.android.com/studio/run/emulator-networking.html

enter image description here

Md Imran Choudhury
  • 9,343
  • 4
  • 62
  • 60
32

This is what finally worked for me.

  • Backend running on localhost:8080
  • Fetch your IP address (ipconfig on Windows)

enter image description here

  • Configure your Android emulator's proxy to use your IP address as host name and the port your backend is running on as port (in my case: 192.168.1.86:8080 enter image description here

  • Have your Android app send requests to the same URL (192.168.1.86:8080) (sending requests to localhost, and http://10.0.2.2 did not work for me)

Chris Neve
  • 2,164
  • 2
  • 20
  • 33
  • 1
    This works for me too but I believe proxy is not necessary - logs on my Flask server showed that when proxy was configured, AVD generated plenty of weird and unnecessary GETs and CONNECTs that resulted in 404s. Switching back to `Use Android Studio HTTP proxy settings` fixed it and now the server receives only valid requests that I explicitly want. One more thing you could do for your convenience is assign a static IP address to your machine, for instance via your router settings so that DHCP won't be able to change it. – Theta Nov 27 '20 at 12:12
20

Thanks to author of this blog: https://bigdata-etl.com/solved-how-to-connect-from-android-emulator-to-application-on-localhost/

Defining network security config in xml

<network-security-config>
    <domain-config cleartextTrafficPermitted="true">
       <domain includeSubdomains="true">10.0.2.2</domain>
    </domain-config>
</network-security-config>

And setting it on AndroidManifest.xml

 <application
    android:networkSecurityConfig="@xml/network_security_config"
</application>

Solved issue for me!

Please refer: https://developer.android.com/training/articles/security-config

Prakash
  • 4,479
  • 30
  • 42
12

you should change the adb port with this command:

adb reverse tcp:8880 tcp:8880; adb reverse tcp:8081 tcp:8081; adb reverse tcp:8881 tcp:8881
jsina
  • 4,433
  • 1
  • 30
  • 28
8

Instead of giving localhost give the IP.

Viren Pushpanayagam
  • 2,397
  • 6
  • 35
  • 39