I am trying to get mono for android (aka monodroid) working within a windows 7 virtual machine on virtualbox but I am having issues with the adb connection to my phone. Whe
I'm posting this here for people with a setup similar to mine:
To allow Android Studio in client OS (Windows) to connect to an Android phone (using adb) via USB:
adb
and confirm that the phone is connected by running adb devices
adb devices
to confirm that the adb server is running and can find your phone. You might need to add the Android platform tools to your PATH (mine was at C:\Users\Username\AppData\Local\Android\Sdk\platform-tools). This step might be optional--I suspect that Android Studio might start up adb
on its own.After I did these things, Android Studio was able to detect my phone and run/debug apps using that device.
Hope this helps!