gpt4 book ai didi

ios - cocoa pod 依赖管理

转载 作者:行者123 更新时间:2023-12-03 17:01:52 25 4
gpt4 key购买 nike

[!]无法满足以下要求:

  • SDWebImage (= 3.7) DZNPhotoPickerController/Core (1.6.0) 要求
  • AFNetworking (~> 3.0) Podfile 要求
  • AFNetworking (~> 1.3.3) DZNPhotoPickerController (1.0.2) 要求

PodFile

pod 'DZNPhotoPickerController'
pod 'ZXingObjC', '~> 3.0'
pod 'vfrReader','~>2.8.6'
pod 'Mantle'
pod 'PPSSignatureView'
pod 'AFNetworking','~>3.0'
pod 'JNKeychain'
pod 'SVProgressHUD'
pod 'ZipArchive'

我想更新 AFNetworking。

帮我解决这个问题

最佳答案

要解决此问题,您可能需要

Fork the DZNPhotoPickerController repo and modify the dependency in the Pod spec and then use your forked repo's git location in the pod file. Not a great solution for the long term but works.

例如,Pod 规范 here应该有line#33,即

ss.dependency 'AFNetworking'

应改为

ss.dependency 'AFNetworking', '~> 3.0' 

在你的 fork 存储库中。

然后在您的 Pod 文件中使用如下

pod 'DZNPhotoPickerController', :git => 'https://github.com/yourUsername/DZNPhotoPickerController.git'

如果项目依赖于遗留依赖代码(如果有),则不保证您的 fork 存储库可以开箱即用。在这种特殊情况下,如果它使用 3.0 中删除的任何 AFNetworking 方法,它将无法工作。

关于ios - cocoa pod 依赖管理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35939674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com