Xamarin.Droid application error while checking "General runtime option"

I am trying to debug a Xamarin Forms application on an Android device, but my application crashes to start after deployment if I checked the "Use shared execution" option to use breakpoints. if I uncheck the "Use shared runtime" checkbox, the application starts without any problems, but I cannot use breakpoints.

here are my adb logs: http://pastebin.com/vgn2jiqh

+4
source share
1 answer

This is a problem that I often see when deploying applications in debug configuration (use shared runtime = true) and release configuration (use shared runtime = false).

You can solve this problem by removing all common Mono components on your device, selecting "Settings-> Applications" and then uninstall Mono Shared Runtime, etc.

After that, reinstall the desired configuration from Xamarin Studio.

+6
source

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


All Articles