我已经创建了新的Objective C项目,并安装了ConnectyCube视频通话和QMChat开发工具包。检查以下pod文件。
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'Connecty' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Pods for Connecty
pod 'QMChatViewController', :git => 'https://github.com/ConnectyCube/ios-chat-view-controller.git', :branch => 'master'
pod 'QMServices', :git => 'https://github.com/ConnectyCube/sdk-ios-services.git'
pod 'ConnectyCubeCalls'
target 'ConnectyUITests' do
inherit! :search_paths
# Pods for testing
end
end当我运行这个项目时,我得到了'ConnectyCube/ConnectyCube.h' file not found错误。
谢谢
发布于 2019-01-23 22:53:23
据我所知,您还没有连接到ConnectyCube iOS Chat SDK。
ConnectyCube聊天接口是视频调用接口的信令传输接口,您需要先接入Chat,才能开始使用视频调用接口。
聊天视图控制器和iOS服务是额外的SDK,它们不会取代核心SDK。
请根据此guide尝试连接Chat SDK。
https://stackoverflow.com/questions/51925093
复制相似问题