Debug app with trial version of MonoDroid

I have a version for checking MonoDroid. I created the Hello Wolrld application and debug it in the emulator, but any application appears in the list of applications on the Android Device Emulator!

Is the problem a trial version or some error in my application?

Can you help me?

0
source share
2 answers

The Android emulator is somewhat complicated, at least with MonoDroid. After starting the application and selecting the virtual device that you have defined for Monodroid, the emulator starts. The difficult part is here, you will also get the "Select device" window under monodorization with slight differences from what you originally had. You should go to these windows and now select, for example, "emulator-5554" in the list of running devices and click "OK". After you have done this, the application should be deployed to the emulator. Slowly, but it should be deployed.

To improve the performance of the Android emulator, I recommend that you look at the snapshots of the emulator in this article at MoreWally.com .

+3
source

The error is described in the following document:

http://support.xamarin.com/customer/portal/articles/141157-ide-does-not-display-target-device

The procedure that I use at startup:

  • Close the development environment, SDK manager, and emulated devices.
  • Open AVD Manager and run the emulator (s) that you would like to use.
  • Run the "adb devices" command (located in Android \ android-sdk \ platform-tools) and note which devices are listed.
  • If they are not there or the list is not complete, run "adb kill-server" and then "adb start-server". You might want to create a batch file with these commands.
  • Now verify that the devices are visible using the "adb devices" command.
  • Open the development environment and everything should work.

If you kill or launch a new emulated device, when you open VS2010, and then the devices will not appear as a “working device” in VS2010, then close VS2010 and follow steps 4 to 6. When you open it again, work.

+1
source

All Articles