Not able to use with cocoapods in mac application
Opened this issue · 1 comments
In my pod file for mac application project, I have added pod 'XlsxReaderWriter'
, but when I run pod install
its giving error like
$ pod install
Analyzing dependencies
[!] The platform of the targetCoredataMacSample
(OS X 10.11) is not compatible withXlsxReaderWriter (1.0.11)
, which does not supportOS X
.
What I could understand is its only specifying iOS( s.platforms = { :ios => "7.0" }
) as platform in the podspec. Will XlsxReaderWriter support macOS?
i forked repo and made some change to podspec
added to platforms :osx => "10.12"
removed from frameworks "UIKit"
now it can be installed with cocoapods, add
pod 'XlsxReaderWriter', :git => 'https://github.com/wateryoma/XlsxReaderWriter.git', :branch => 'master'
to your Podfile
after
pod install
you need to create bridge header (if you use swift) and add $(SRCROOT)/Pods to Header search paths in build settings
i guess it's not the best way, but i needed to make lib work for osx asap