pod install error: The name of the given podspec 'file_picker' doesn't match the expected one 'gx_file_picker'
pod install error: The name of the given podspec 'file_picker' doesn't match the expected one 'gx_file_picker'
我在执行 pod 安装时遇到以下错误。
[!] The name of the given podspec 'file_picker' doesn't match the expected one 'gx_file_picker'
我曾尝试将 'pubspec.yaml' 中的文件名从 gx_file_picker 更改为 file_picker,但这似乎不起作用。进一步的研究也没有成果。
知道如何解决这个问题吗?
我一直面临同样的问题,我发现 gx_file_picker/ios/gx_filepicker.podspec:
s.name = 'file_picker'
必须改为:
s.name = 'gx_file_picker'
更改后这样做不会造成任何伤害:
- 进入ios文件夹
- 删除 PodFile.lock 文件
- rm -rf Pods
- pod 缓存清理 --all
- pod 分解
- 连播设置
- pod 安装
现在我的项目中一切正常。
我在执行 pod 安装时遇到以下错误。
[!] The name of the given podspec 'file_picker' doesn't match the expected one 'gx_file_picker'
我曾尝试将 'pubspec.yaml' 中的文件名从 gx_file_picker 更改为 file_picker,但这似乎不起作用。进一步的研究也没有成果。
知道如何解决这个问题吗?
我一直面临同样的问题,我发现 gx_file_picker/ios/gx_filepicker.podspec:
s.name = 'file_picker'
必须改为:
s.name = 'gx_file_picker'
更改后这样做不会造成任何伤害:
- 进入ios文件夹
- 删除 PodFile.lock 文件
- rm -rf Pods
- pod 缓存清理 --all
- pod 分解
- 连播设置
- pod 安装
现在我的项目中一切正常。