Answers for "localhost access android enumerator"

0

localhost access android enumerator

You can actually use localhost:8000 to connect to your machine's localhost by running below command each time when you run your emulator (tested on Mac only):

adb reverse tcp:8000 tcp:8000

Just put it to Android Studio terminal.

It basically sets up a reverse proxy in which a http server running on your phone accepts connections on a port and wires them to your computer or vice versa.

http://10.0.2.2:8000
Posted by: Guest on May-05-2022
0

localhost access android enumerator

You can actually use localhost:8000 to connect to your machine's localhost by running below command each time when you run your emulator (tested on Mac only):

adb reverse tcp:8000 tcp:8000

Just put it to Android Studio terminal.

It basically sets up a reverse proxy in which a http server running on your phone accepts connections on a port and wires them to your computer or vice versa.

http://10.0.2.2:8000
Posted by: Guest on May-05-2022

Code answers related to "localhost access android enumerator"

Browse Popular Code Answers by Language