I want to use a C++ library (static/dynamic) on my Xamarin.Android and Xamarin.iOS project. Should the C++ library be static or dynamic in order to be used on both Xamarin.Android and Xamarin.iOS projects, as i'm thinking of using C# DLLimport/SWIG tool to use the C++ library as C#.
(I heard that iOS forbids the usage of dynamic libraries in the apps.) What can be the best approach for me?
Thanks!