我试图在没有使用Cocoapods的情况下将Sinch SDK与swift项目一起使用,因为我必须支持iOS 7.0。
我已经下载了Sinch SDK并将Sinch.framework添加到我的项目Linked Frameworks and Libraries部分。
现在我对如何开始并不知道。我正在使用桥接头文件来链接Objective C文件。
答案 0 :(得分:0)
最后我能够使用Cocoapods并支持iOS 7.
如果您使用带有use_frameworks
个关键字的Cocoapods。它会强制您将最低iOS版本设置为iOS 8.0。因为它制作动态框架。
因此解决方案是评论use_frameworks
。
我现在使用的Podfile位于下方。
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
target 'TheSinchSampleProject' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
# use_frameworks!
# Pods for TheSinchSampleProject
pod 'SinchRTC', '~> 3.9'
end