Signed apk not working on my device

I developed an Android application using Xamarin. It works great on an emulator, but crashes on a real device. Apk is installed on the device and when you open the application it says: "the application stopped unexpectedly. Try again" and forces the application to close. Targeting perspective, minimum version of sdk, etc. Everything is in order, but still does not work. Any help would be appreciated. Thanks

+5
source share
1 answer

When you are debugging with Xamarin Studio (or Visual Studio), Xamarin.Android will install Mono runtime and support files separately. If your application is a Debug application, then the problem will be that the common runtime isn’t. So, in the "Vacation" mode, make sure you clear the "Use shared mono execution" checkbox in the project settings. I have attached a screenshot, please go through.enter image description here

+8
source

All Articles