I'm trying to use the emulator that comes with Android Studio to open a serial port to talk to an Arduino board on COM5; however, I am having trouble even seeing a device list. I am using the package by felHR85
GitHub link for the USB serial connection.
I start by opening the emulator via the command line emulator -avd Nexus_9_API_27 -qemu -serial COM5
which then opens the following dialog box:
After accepting the defaults, I then run the application on the emulator and tap a button which runs the following code:
private void start() {
HashMap<String, UsbDevice> usbDeviceHashMap = usbManager.getDeviceList();
Log.i(TAG, "start: " + usbDeviceHashMap.size());
if (!usbDeviceHashMap.isEmpty()) {
Log.i(TAG, "list not empty");
}
}
However, the usbDeviceHashMap
is always empty - which is confirmed by my first log returning start: 0
and my second log never being triggered.
The usbManager
is instantiated as follows: usbManager = (UsbManager) getSystemService(this.USB_SERVICE);
The application manifest (simplified):
<uses-feature android:name="android.hardware.usb.host"
android:required="true"/>
<application
...>
<activity android:name=".MainActivity">
...
<meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
android:resource="@xml/device_filter" />
The @xml/device_filter
is:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<usb-device vendor-id="2341" />
<!-- Vendor ID of Arduino -->
</resources>
I'm not sure what is going wrong, I'm unable to test the code on a real device as the OTG connection piece is still in the mail.
Windows 10, Android Studio v 4.1.1, Emulator API 27, Application Compile and Target SDK 30, Application Min SDK 26
UPDATE 17 DEC 2020: My OTG adapter arrived and I've tested the code, which works. No idea why the AVD Emulator doesn't work, it's a little frustrating but not the end of the world.
If you are using serial communication over USB you can use Genymotion to create a virtual device (I created the Google Nexus 6) and then use virtual box to set up a USB Device that is passed through to the virtual device. Here is an image of the setup in VirtualBox:
After this is set up, you can use the Genymotion device with Android Studio (see https://docs.genymotion.com/desktop/latest/07_Plugins.html). I am using this setup with React Native, so I just have to start the virtual device before I run the debugger.