Debugging an Android "remote" device with Xamarin?

So I need to do some debugging using Xamarin Android. This would not be such a problem if the emulator were not so slow. So, I looked at setting up the x86 emulator, but since I am running Xamarin in VMWare (the host machine is Linux), this will not work. It’s best to either install an accelerated x86 Android engine or use something like Android x86 from my host machine.

How can I get Xamarin to connect to a device that does not work on the same machine?

+4
source share
2 answers

It is possible to configure ADB for debugging over a network instead of USB. Check out the Xamarin document titled “Configuring a device for development” and scroll down to the section titled Connect a device to a computer for instructions on how to do this.

+5
source

It's pretty simple, but have you turned on USB debugging on your Android phone?

http://www.wugfresh.com/faq/how-do-i-enable-usb-debugging-on-android-4-2-the-developer-options-menu-item-is-gone/

follow these instructions if you don’t ...

0
source

Source: https://habr.com/ru/post/1497263/


All Articles