Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tvos support #43

Open
tbaranes opened this issue Sep 23, 2015 · 1 comment
Open

tvos support #43

tbaranes opened this issue Sep 23, 2015 · 1 comment

Comments

@tbaranes
Copy link

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.

@evermeer
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants