I am integrating Hypertrack SDK
in my iOS app and have followed steps from their documentation. According to their docs following is the code that needs to be added in the 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
When I run pod install
command in terminal, it does not install the hypertrack pod. I even tried pod update
but it is not working.
Can anyone help me and explain me what is wrong here?
I contacted Hypertrack's Support Team on Slack and was able to fix this issue. Following are the steps that I followed :-
pod repo update
pod install
pod update
and voila it worked!I am not sure why I was unable to install it when I tried before but after performing these steps I was able to fix the problem.