Last active
June 21, 2016 12:44
-
-
Save tomaskraina/6a30d8bf00eb12bbe653a80cc567b0c4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'PayMillSDK' | |
s.version = '2.2.0' | |
s.summary = "PAYMILL iOS SDK enables processing of payments for iOS applications. Visit http://www.paymill.com for more information." | |
s.homepage = "https://www.paymill.com/en-gb/documentation-3/reference/mobile-sdk/" | |
s.license = 'Commercial, :file => License.md' | |
s.author = { "Paymill GmbH" => "[email protected]" } | |
s.source = { :git => "https://github.com/paymill/paymill-ios.git", :tag => '2.2.0' } | |
s.ios.deployment_target = '6.0' | |
s.osx.deployment_target = '10.8' | |
s.ios.source_files = 'samples/vouchermill/PayMillSDK/PayMillSDK.framework/Versions/A/Headers/*.h' | |
s.osx.source_files = 'macos/PayMillSDK.framework/Versions/A/Headers/*.h' | |
s.ios.preserve_paths = 'samples/vouchermill/PayMillSDK/PayMillSDK.framework' | |
s.osx.preserve_paths = 'macos/PayMillSDK.framework' | |
s.ios.vendored_frameworks = 'samples/vouchermill/PayMillSDK/PayMillSDK.framework' | |
s.osx.vendored_frameworks = 'macos/PayMillSDK.framework' | |
s.requires_arc = true | |
s.framework = 'Security' | |
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment