We have 2 binding libraries, iOS (binds .framework
) and Android (binds .aar
).
Currently, we ship those bindings manually (we share the AppDefinition.cs
, .framework
& .aar
), our client process is the following:
AppDefinition.cs
.What we want to do is merge both the binding libraries into a single library, and distribute it through NuGet. So our client would install and control versions easily. So far, we're stuck in which type of library to choose (following screenshot), and how to reference our binding libraries there.
TLDR;
1. Which type of library should we choose to distribute iOS and Android Binding Libraries as a single package.
2. Reference to docs if it's already there.