-
Hello, Key steps:
Runtime error:
Am I possibly missing an important step? I would really appreciate it if you could let me know if there’s anything else I should do. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
@Kapustine Hello~ It's okay, for debug purpose, on macos, the package will firstly try to find If something like |
Beta Was this translation helpful? Give feedback.
-
Thank you very much for your prompt response. To be honest, I did try running it under the previous conditions — and I ran into this error:
Here’s the code I was working with:
Thanks to your response, however, I realized that the issue wasn’t with OpenCV or the plugin at all — it was on me! While I have your attention, I’d also like to report a build warning and error I encountered:
As the message suggests, I was able to resolve this by editing the following line in: From what I looked into, it looks like this change came with Xcode 15. |
Beta Was this translation helpful? Give feedback.
@Kapustine Hello~
It's okay, for debug purpose, on macos, the package will firstly try to find
libdartcv.dylib
and then load from process, and if you are using Flutter, typically the native library will be statically linked to your program since it is introduced by cocoapods, therefore,ffi.DynamicLibrary.process()
should work and you can use opencv functions as normal.If something like
symbol XXX not found
is reported, please let me know.