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 your virtual device to ADB, install and set up gmsaas.

For instructions, follow the gmsaas tool user guide.

1. Install and set up gmsaas. 2. Log in to gmsaas with the command:

gmsaas auth <your account email>
3. Launch the device(s) you wish to connect. 4. Connect the device(s) to ADB with the command:
gmsaas instances adbconnect [--adb-serial-port PORT] <instance_uuid
5. If you get the error message Adb tunnel communication failure, it is probable that the sdk path has not been set properly. 6. If successful, the command adb devices should return localhost:[PORT] for each connected devices. 7. For more details, please refer to gmsaas user guide.

Related articles