CocoaPods could not find compatible versions for pod ““:

添加新的 SDK 依赖抛出了如下异常,无法找到可兼容的版本依赖库;

[!] CocoaPods could not find compatible versions for pod "HDSSup":
  In Podfile:
    HDSSup

Specs satisfying the `HDSSup` dependency were found, but they required a higher minimum deployment target.

解决办法

一、可尝试降低当前 SDK 的版本
例如向下指定到某个版本且兼容现有所需功能

 pod 'HDSSup', '~> 6.9.6'

二、提高 Podfile 的 platform

platform :ios, '10.0'

具体可根据实际情况选择尝试;


 以上便是此次分享的全部内容,希望能对大家有所帮助!

猜你喜欢

转载自blog.csdn.net/survivorsfyh/article/details/131782223