stripe-ios/StripeCameraCore.podspec

22 lines
1.2 KiB
Plaintext
Raw Normal View History

Pod::Spec.new do |s|
s.name = 'StripeCameraCore'
# Do not update s.version directly.
# Instead, update the VERSION file and run ./ci_scripts/update_version.sh
2022-01-11 07:02:23 +08:00
s.version = '21.11.1'
s.summary = 'StripeCameraCore contains shared infrastructure used by Stripe pods. '\
'It is not meant to be used without other Stripe pods.'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://stripe.com/docs/mobile/ios'
s.authors = { 'Stripe' => 'support+github@stripe.com' }
s.source = { :git => 'https://github.com/stripe/stripe-ios.git', :tag => "#{s.version}" }
s.frameworks = 'AVKit', 'CoreML', 'AVKit', 'VideoToolbox', 'AVFoundation'
s.requires_arc = true
s.platform = :ios
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.source_files = 'StripeCameraCore/StripeCameraCore/**/*.swift'
s.dependency 'StripeCore', "#{s.version}"
end