首页 > 解决方案 > 无法安装 Hypertrack 的 Pod

问题描述

我正在集成Hypertrack SDK到我的 iOS 应用程序中,并按照他们的文档中的步骤进行操作。根据他们的文档,以下是需要添加的代码podfile

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

target 'AppName' do
pod 'HyperTrack'

  post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings['SWIFT_VERSION'] = '3.3'
      end
    end
  end
end

当我pod install在终端中运行命令时,它不会安装 hypertrack pod。我什至尝试过pod update,但它不起作用。

谁能帮我解释一下这里有什么问题?

标签: ioscocoapodshypertrack

解决方案


日志有没有返回任何东西?尝试更新你的 cocoapods,这可能会奏效。


推荐阅读