I'm working on Android App in Xamarin with C# code.
I have a library dll created by me that I'm using has an reference in the AndroidApp.
But I have a problem with one file.
It includes this:
using Microsoft.SqlServer.Management.Smo;
using Microsoft.SqlServer.Management.Common;
This works fine in the original library, but using it has reference in my AndroidApp project makes app crash while is loaded, it opens but right after it crashes and without the file that includes this two references it works fine.
I know it because I've commented the code that uses this references and then works fine.
The output doesn't show any information about this error