You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do you think to update your pod to support this new platform soon? Or a branch to avoid breaking the master until CocoaPods release a version working with tvos?
I don't think you will have any issue to handle it with the current version.
The text was updated successfully, but these errors were encountered:
I just published a new podspec named Xml2Dictionary that points to this repository. I only had to change to .podspec in order to let it support TVOS and WatchOS.
I used this .podspec:
Pod::Spec.new do |s|
s.name = "Xml2Dictionary"
s.version = "1.4"
s.license = { :type => 'zlib', :file => 'LICENCE.md' }
s.summary = "Xml2Dictionary is a class designed to simplify parsing and generating of XML (on iOS, MacOS, WatchOS and TVOS)"
s.homepage = "https://github.com/nicklockwood/XMLDictionary"
s.authors = "Nick Lockwood"
s.source = { :git => "https://github.com/nicklockwood/XMLDictionary.git", :tag => "1.4" }
s.source_files = 'XMLDictionary'
s.requires_arc = true
s.ios.deployment_target = '4.3'
s.osx.deployment_target = '10.6'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
end
Do you think to update your pod to support this new platform soon? Or a branch to avoid breaking the master until CocoaPods release a version working with tvos?
I don't think you will have any issue to handle it with the current version.
The text was updated successfully, but these errors were encountered: