Create bindings to native libraries .net Maui

9.4k Views Asked by At

Is there any way to bind native libraries like in Xamarin? I have tried to do some native implementations in the new .NET Maui and haven't had success on it. I would really appreciate if someone has some information about it.

2

There are 2 best solutions below

0
On

For android jar files, I'm using .NET MAUI class library enter image description here

<ItemGroup Condition="$(TargetFramework.Contains('-android'))">
    <EmbeddedJar Include="classes.jar" />
</ItemGroup>

Add this "ItemGroup" to your project, if you can create a wrap class like

enter image description here

2
On

Yes, native library bindings are done the same way as in Xamarin, there are two new project templates "Android Java Library Binding" and "iOS Binding Library" just add them and follow regular Xamarin documentation in order to configure it:

For android you can also check this git repo - https://github.com/Bohdandn/MAUI.WebRTC.Demo, unfortunately iOS doesn't compile there.