Skip to main content

ADB

Connect to a Virtual Device via ADB

Corellium supports controlling your Android virtual devices using the Android Debug Bridge (ADB) command-line tool. ADB allows greater control to install and debug applications.

You can read more about ADB on the Android Developer Studio.

Install Android Debug Bridge

The Android Debug Bridge tool is available as part of the android-platform-tools SDK.

On macOS, install ADB in the Terminal using Brew.

brew install android-platform-tools

Initiate a Connection to Your Virtual Android Device

  1. Create and boot up a virtual Android device.

  2. Download the .ovpn file and initiate a VPN connection.

Download the OVPN file

  1. Copy the adb connect ... command and run it in Terminal or PowerShell

Copy the ADB command

  1. Verify your connection by running adb devices.

List adb devices connected

Once connected, you can use adb to transfer files, run remote shell commands, install and uninstall apps, view device logs, and more.