当在ios上使用DynamicLibrary.open("xxx.framework/xxx")打开动态库报错时,需要把这个库的文件添加到项目中
具体步骤如下:
1. 在xcode中打开项目工作区 example/ios/Runner.xcworkspace
2. 右键点击 “Runner”
3. 选择 Add files to "Runner"
4. 选择 xxx.framework 文件添加
5. 重新 flutter run
参考链接:
https://github.com/dart-lang/ffi/issues/28
https://flutter.dev/docs/development/platform-integration/c-interop#ios-and-macos
网友评论