How to connect mobile app, running on one Android emulator, to SDL running on another 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.

  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. Please note that you may face with problem if more than one emulator is running.

So you may run all necessary commands at this step (for example, forward all ports, which are used for video/audio streaming or WebEngine Apps).

Or you may run any necessary command with additional flag and name of particular emulator:

./adb -s <emulator-name> forward tcp:12345 tcp:12345

To get names of all attached emulators run the following command:

./adb devices

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

IP address - 10.0.2.2 (this is special alias to your host loopback interface)

Port - 12345

  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