I was given a new library *.framework in Swift 5 from an external client and I'm trying to integrate this lib in our Xamarin.iOS project; I made it creating a new binding project and following the MS documentation steps, but I was wondering if it possible add this library using its *.dll instead the binding project in order to minimise the app size and complexity.
I created the *.dll successfully but I got these errors after add the *.dll lib and delete the binding project references:
MT5209: Error: framework not found dobSDK. Native linking.
MTOUCH: Error MT5202: Native linking failed. Please review the build log. (MT5202)
clang: Error: linker command failed with exit code 1 (use -v to see invocation)
I also tried adding the .framework to as native reference but got this one:
can't process a mix of dylibs and frameworks
I'm missing any link? reference? lib? mtouch argument?
I don't know exactly what I'm doing wrong or if its even possible, I've just created few binding projects and never using it *.dll instead the full project.
any help or hint will be welcome.
thanks in advance!