I'm working on React Native App for iOS and want to do some image processing with custom C++ library. I compiled library into .dylib file. My question is: how can I call library methods from react native code?
I looked into native modules tutorial (https://reactnative.dev/docs/native-modules-ios), but as far as I understand native module compiles with app building. Is it possible to use compiled shared library instead?