I am facing an issue when trying to get the "SpotX" dependency from Cocoapods that only affects a particular computer. I have tried it on my personal MacBook Pro and it works. However, my Mac Mini is failing.
The Podfile looks like that:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'Demo' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Demo
pod 'SpotX-SDK'
pod 'SuperAwesome', '7.2.13'
pod 'SpotX-SDK-AVPlayer'
target 'DemoTests' do
inherit! :search_paths
# Pods for testing
end
target 'DemoUITests' do
# Pods for testing
end
end
target 'DemoTV' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for DemoTV
pod 'SpotX-SDK-AVPlayer'
target 'DemoTVTests' do
inherit! :search_paths
# Pods for testing
end
target 'DemoTVUITests' do
# Pods for testing
end
end
According to Here, the version is available
The weird part is that is working on other computers with the same Xcode version...
Any ideas?
DATA:
git version 2.24.3 (Apple Git-128)
Cocoapods version = 1.10.1
