I have an Xcode project with several goals. One of these goals is aimed at the tvOS platform. My other goals use the youtube-iso-player-helper framework, which does not support tvOS. I want to have a Cocoapod podcast that includes the player platform only on iOS.
Here is my current subfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
platform :tvos, '9.0'
use_frameworks!
pod 'SVGgh'
pod "youtube-ios-player-helper", "~> 0.1"
xcodeproj 'MyProject.xcodeproj'
When I try to update my modules, I get the following error:
[!] The target platform Pods
(tvOS 9.0) is not compatible with youtube-ios-player-helper (0.1.4)
, which does not support tvos
.
Obviously, the current version of Cocoapods is being used.
So, I need to know the syntax needed for my subfile.
source
share