Skip to content Skip to sidebar Skip to footer

Android Volley Library Does Not Work On Local Ip

volley is not working when i want to fetch data from a system on my local network. where URL is like http://192.168.x.x/data.php it works well on emulator but not on a real device.

Solution 1:

There are two ways to solve this:

a) keep your device connected to the PC which is connected to your local network either using lan or wifi. Keep debugging mode on. Use ipconfig to check your pcs ipv4 address and use that.

forward your server's port on your router and then use the ipv4 address found on your pc's ipconfig command.

c) Best option-> i use this. Forward your pc's server port on your router, Go to your router's DHCP configurations and give your pc mac a preferred DHCP ip to make sure your router always gives that local ip to your pc(global will still be dynamic if you dont have a static ip). Register to a DDNS and use the set ip above and you will be able to access your web service from anywhere in the world. (i use dynudns for the ddns part)

see How can I access my localhost from my Android device? for other ideas

In the first two steps, make sure that the mobile is connected via wifi so that the router can forward it requests. in third, it can be connected to the internet anyway it likes. Also in the first, you will have to change the url everytime your local ip changes.

In second option, the dns will give a tool for auto ip updation :)

Post a Comment for "Android Volley Library Does Not Work On Local Ip"