How to use Android Studio, Eclipse, VS Code, JetBrains Rider or any other IDE with Genymotion SaaS?

Most developer tools can communicate with Genymotion Cloud SaaS via ADB.

To connect Genymotion SaaS virtual devices to ADB, install and set up the gmsaas tool.

Install and set up gmsaas tool

For instructions, follow the gmsaas tool user guide.

Log in to gmsaas

Log in to gmsaas with the following command:

gmsaas auth <your account email>

Launch the device(s)

Launch the device(s) you wish to connect.

Connect the device(s) to ADB

Connect the device(s) to ADB with the following command:

gmsaas instances adbconnect [--adb-serial-port PORT] <instance_uuid>

If you get the error message Adb tunnel communication failure, the sdk path has not been set properly.

Verify ADB connection

If the connection succeeds, the following command should return localhost:[PORT] for each connected device:

adb devices

For more details, please refer to .

Related articles