leancloud / leancloud-social-ios

LeanCloud 社交登录组件,轻松加入 QQ、微博、微信登录
https://leancloud.cn/docs/sns.html
159 stars 50 forks source link

The 'Pods' target has transitive dependencies that include static binaries #37

Closed wao813 closed 8 years ago

wao813 commented 8 years ago

在Swift project 里的Podfile使用 use_frameworks! ,在pod install的时候会出现错误: [!] The 'Pods' target has transitive dependencies that include static binaries: AVOSCloud.framework and AVOSCloudIM.framework

Smiacter commented 8 years ago

我和一楼遇到类似的问题,首先用pod导入的三个基础库,然后pod 'LeanCloudSocial',出现[!] The 'Pods' target has transitive dependencies that include static binaries: (.../Pods/AVOSCloud/libAVOSCloud.a)

hkbenchan commented 8 years ago

use_frameworks! 是要搭上用 dynamic 的pod才可以

use_frameworks!

pod 'AVOSCloudDynamic', '~> 3.2.4'
pod 'AVOSCloudCrashReportingDynamic', '~> 3.2.4'
pod 'LeanCloudSocialDynamic', '0.0.9'

类似这样 另外 作为用户我还是建议你们到 forum.leancloud.cn 提问吧 那边比较有人气

wao813 commented 8 years ago

@ustbenchan 谢谢!