我正在研究nodejs,mysql,android 我想在真实设备上测试我的Android应用程序并在同一个WIFI网络上连接我的笔记本电脑和移动设备,并在URL中指定IP地址,因为我使用的是Volley库
网址是: http://ipaddress:8080 8080是nodejs服务器端口
但是当我运行我的Android应用程序时,它不会在nodejs server上运行。虽然请求是从android端发送的,但是在nodejs服务器上处理请求
我尝试了许多链接,但没有一个工作。 任何帮助表示赞赏
答案 0 :(得分:0)
I have the answer to my question
I tried the following link and it worked for me
https://stackoverflow.com/a/17603378/8101634
what it states is.
1) Connecting android device through USB cable to laptop
2) Switching USB tethering on android device
3) Go to network and sharing center.
4) It will show you the device and click on it.
5) Click on details
6) Take the Ipv4 address from there and use it as URL in android app
7) Re-run your android application
It works