android connect to PC's localhost when debugger on mobile device

前端 未结 5 922
梦谈多话
梦谈多话 2020-12-05 10:36

I want to debug my android application, I connect the android device to my PC using the USB cable. In my application there is a button to connect with localhost, ip for loca

相关标签:
5条回答
  • 2020-12-05 10:57

    I think you have two options

    The first one is using 10.0.2.3 when you use your real android device.it works for me.

    Your Second opt is creating hotspot from your pc and connect your android device to the hotspot.

    Find the ip address using cmd type "ipconfig" replace localhost with the ip address.

    Thanks.

    0 讨论(0)
  • 2020-12-05 11:04

    Google has added support in Chrome 29 and higher to use reverse port forwarding to access a website hosted on your local development machine through the USB cable on Chrome for Android. Setup instructions can be found at the following URL:

    • Android Remote Debugging - Reverse Port Forwarding
    • Tools for Web Developers - Access Local Servers

    As of desktop Chrome 30 Reverse Port Forwarding is no longer an experimental feature in Chrome. It can be accessed by typing about:inspect in the address bar of your PC, and by clicking the "Enable port forwarding" check box and clicking the "Configure port forwarding" button located to the top right of the window.

    Once that is done, connect your mobile device via USB. Open Chrome on your mobile device to localhost:8000 (or whichever port you have configured on your local server).

    The Reverse Port Forwarding functionality will make sure that your Android device now sees your PC's localhost.

    0 讨论(0)
  • 2020-12-05 11:06

    For that you need to make some changes in your xampp server... Assign 1 static IP address to your system and then you need to put your xampp server in online mode. after that you can use that ip address in your android application instead of 10.0.2.2. Works fine for me as i am using my localhost with my android application.

    0 讨论(0)
  • 2020-12-05 11:07

    As 10.0.2.2 is your system (pc)'s local host address (from emulator only). Actually android doesn't recognized localhost in url. so 10.0.2.2 is for that meant. Also for android device loopback address is 127.0.0.1.

    Your url with 10.0.2.2 is correct. Also you can use Static IP of your system.

    Just check for

    <uses-permission android:name="android.permission.INTERNET"></uses-permission>
    

    in your application's manifest file.

    EDIT:

    Here you are using port 8080 so, try with adb command on your host machine.

    adb forward tcp:8080 tcp:8080
    

    Also please elaborate on this line "i want to debugger my application on my mobile".

    Note:

    If you are going to test on real device use your Network IP of system (PC).

    0 讨论(0)
  • 2020-12-05 11:11

    You can share your Mac's Internet connection over Wi-Fi. Then your Android app can connect to a Servlet running on the Mac with HTTP over Wi-Fi. The steps are:

    1. Run System Preference on Mac
    2. Goto "Sharing" tab
    3. Turn on "Internet Sharing"
    4. Select "Ethernet" in the "Share your connection from" combo
    5. Select "Wi-Fi" in the "To Computers Using" list box
    6. Use "Wi-Fi Options..." button to configure Wi-Fi security. Now your Mac is a Wi-Fi server, and it is sharing its Ethernet Internet connection.
    7. Configure your Android device's Wi-Fi to connect to your Mac (in Settings command)
    8. On your Mac, goto the Network tab in System Preferences, and select Wi-Fi in list to find out the IP address of your Mac on the Wi-Fi network (for me it was 169.254.66.223)
    9. In your Android App you can now connect to the Servlet in your Mac with "http://169.254.66.223:8080/YourServer/YourServlet"
    0 讨论(0)
提交回复
热议问题