Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

199
Views
Linphone SDK integration returns unknown assembly in Xamarin Android

I have implemented Linphone in Xamarin forms. It is working fine in iOS but it is crashing in Android.It shows this exception

System.DllNotFoundException

linphone.framework/linphone assembly:<unknown assembly> type:<unknown type> member:(null)

It shows the exception after the following code

CoreListener listener = Factory.Instance.CreateCoreListener();

Is there any specific Android SDK I need to download for Linphone to work? I have no clue how to fix this. Any suggestions?

over 4 years ago · Santiago Trujillo
3 answers
Answer question

0

The main try is the clear/rebuild solution, then try uninstall and reinstall the library, since it's a dllNotFound Exception and if the other ones doesn't work you can try to find your missing DLL from here (but for this one you have to figure out which dll file you're missing).

I know these are easy things but maybe you didn't think about it at the time

over 4 years ago · Santiago Trujillo Report

0

I've had similar issues with other 3rd party libraries and I found that the linker is causing the problem. Have you tried turning the linker off?

Here's how to do it on VS 2022:

Right-click on your Xamarin.Android project > Properties > Android Options > Linker properties > Set Linking to None for your desired configuration

Have a look at this page for more information on linking

over 4 years ago · Santiago Trujillo Report

0

I fixed this by doing a minor change in code.

 #if WINDOWS_UWP
        public const string BELLE_SIP_LIB_NAME = "bellesip";
                public const string BCTOOLBOX_LIB_NAME = "bctoolbox";
#else
        public const string BELLE_SIP_LIB_NAME = "linphone";
                public const string BCTOOLBOX_LIB_NAME = "linphone";
#endif

I changed the public const string BELLE_SIP_LIB_NAME = "linphone.framework/linphone"; to public const string BELLE_SIP_LIB_NAME = "linphone";. I think some libraries are missing in linphone.framework.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!