I'm trying to develop an application which acts as a Android USB Host however I need to know whether the Android x86 running in VirtualBox or Vmware player can be used for this purpose.
UPDATE:
If using live-android works do I have to:
- Install a sepate USB Host driver
To be able to run this simple USB Host app:
UsbManager manager = (UsbManager) getSystemService(Context.USB_SERVICE);
...
HashMap<String, UsbDevice> deviceList = manager.getDeviceList();
UsbDevice device = deviceList.get("deviceName");