Skip to content

v3.0.5

Latest
Compare
Choose a tag to compare
@ElfSundae ElfSundae released this 14 Dec 08:44

3.0.5 更新内容

  • 移除 UIWebView 相关代码。

CocoaPods 集成 3.0.5 版本

因为金山官方没有发布 3.0.5 的 pod,所以通过 pod update 不能直接升级。可以参考以下方案安装最新版:

方案一:在 Podfile 中指定 tag :

pod 'libksygpulive', :git => 'https://github.com/ksvc/KSYLive_iOS.git', :tag => 'v3.0.5'

pod update 提示安装的是 3.0.4 版,是因为官方 git 仓库中的 podspec 文件中的版本是 3.0.4,其实真正集成进项目的是 v3.0.5 这个 tag 下的代码和库。

方案二:在 Podfile 中添加我的私有源:source 'https://github.com/ElfSundae/CocoaPods-Specs.git'

source 'https://github.com/ElfSundae/CocoaPods-Specs.git'
source 'https://cdn.cocoapods.org/'

target 'App' do
    pod 'libksygpulive' # 如果 libksygpulive 已经在其他库中指定为依赖,这里可以不加这行
end