How to connect mobile app, running on real mobile device, to SDL running on Android emulator - CustomSDL/sdl_android_launcher GitHub Wiki

Note: Emulator should already be started at this point. HMI should be started and connected according to guide at this step.

Note: You need to have any proxy tool. In this guide goproxy tool is taken as an example. So if you want to use another tool, you may skip steps 3 and 4, and run your proxy to use local port 12346, assuming the upstream HTTP proxy is localhost:12345.

  1. If SDL library is running on emulator, you should perform some extra steps to allow external TCP connections. First of all, locate ADB tool which is by default in your SDK folder:

Android/Sdk/platform-tools

  1. Run the following command from terminal:

./adb forward tcp:12345 tcp:12345

This will redirect TCP port 12345 from your host machine to 12345 port of your emulated device.

https://developer.android.com/studio/command-line/adb#forwardports

  1. Download and install goproxy tool on your host machine:

https://github.com/snail007/goproxy

Note: Installation of goproxy requires root privileges.

  1. Once installed, run the following command in the terminal:

proxy tcp -p ":12346" -T tcp -P "localhost:12345"

  1. On your Android device open SDL compatible application of your choice and specify TCP settings:

IP address - IP address of your host machine

Port - 12346

  1. Try to connect your application to SDL. If forwarding setup is correct, then you will see the application on HMI screen:

spt_on_hmi_screen