@lzwjava
报下面的错
The 'Pods' target has transitive dependencies that include static binaries: (Pods/AVOSCloud/libAVOSCloud.a and Pods/AVOSCloudIM/libAVOSCloudIM.a)

去掉use_frameworks! 只留LeanChatLib就正常。

POD配置文件如下,
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'Alamofire', '~> 3.0'
pod 'SwiftyJSON'
pod 'PKHUD'
pod 'SDWebImage', '~>3.7'
pod 'HMSegmentedControl'
pod 'PureLayout', '~> 3.0.1'
pod 'SKPhotoBrowser'
pod 'IQKeyboardManagerSwift'

pod 'Pingpp', '~> 2.1.0'

pod 'LeanChatLib', :path => '..'

`source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'LeanChatLib'
`

只留这样也是报同样的错,只有去掉use_frameworks!才正常。

@lzwjava

这是因为 LeanChatLib 不是动态库。您可以手动集成静态库到项目中,我们尽快支持动态库。

有没有集成静态库的步骤。或者教程,麻烦给一下,谢谢。