首先,我想说我不是iOS开发人员。
我正在尝试为Flutter开发VLC插件。为此,我需要将其pod(pod“ MobileVlcKit” pod)添加到podfile中,对吗?
但是,当我创建项目(通过命令flutter create -t plugin flutter_vlc_kit
)时,项目内的iOS文件夹没有podfile。
此外,它没有我可以在XCODE上打开以进行代码编辑的任何。xworkspace
或。xcodeproj
文件:
如何将vlc kit依赖项pod(pod“ MobileVlcKit”)添加到此插件?
答案 0 :(得分:3)
添加您的pod依赖项,以修改ios/flutter_vlc_kit.podspec
s.dependency 'MobileVLCKit'
或带有所需版本
s.dependency 'MobileVLCKit', '3.2'
参考文献:
然后转到您的example/ios
文件夹并运行pod install
。
然后打开您的Runner.xcworkspace
并从那里构建插件。
注意::您可能会遇到此issue-tl; dr(不是最佳选择),将XCode的构建系统更改为旧版本。