Android emulator with proxy settings - Error FATAL:.//android/base/sockets/ Check failed: isValidFd(fd). fd 1404 max1024

前端 未结 7 840
慢半拍i
慢半拍i 2021-01-30 14:24

need to run emulator with proxy settings , I am using the following command in command prompt to start emulator

emulator -avd AVD_for_3_7_WVGA_Nexus_One -http-p         


        
7条回答
  •  隐瞒了意图╮
    2021-01-30 14:42

    For some reason Android Emulator doesn't like IP address as the proxy. If you are using Fiddler use localhost:8888:

    emulator.exe -avd Nexus_5_API_21_x86 -no-audio -http-proxy localhost:8888
    

    Don't forget -no-audio parameter too.

提交回复
热议问题