Arm 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โ
You can connect to your Android device with or without a VPN, below shows the VPN connection method.
Create and boot up a virtual Android device.
Download the .ovpn file and initiate a VPN connection.
Copy the
adb connect ...
command and run it in Terminal or Powershell.Verify your connection by running adb devices.
Once connected, you can use adb to transfer files, run remote shell commands, install and uninstall apps, view device logs, and more.