-
Notifications
You must be signed in to change notification settings - Fork 981
/
StripeCardScan.podspec
22 lines (20 loc) · 1.25 KB
/
StripeCardScan.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'StripeCardScan'
# Do not update s.version directly.
# Instead, update the VERSION file and run ./ci_scripts/update_version.sh
s.version = '24.0.0'
s.summary = 'Scan credit and debit cards to verify that they\'re genuine'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://stripe.com/docs/mobile/ios'
s.authors = { 'Stripe' => '[email protected]' }
s.source = { :git => 'https://github.com/stripe/stripe-ios.git', :tag => "#{s.version}" }
s.frameworks = 'Foundation', 'UIKit'
s.requires_arc = true
s.platform = :ios
s.ios.deployment_target = '13.0'
s.swift_version = '5.0'
s.weak_framework = 'AVKit', 'CoreML', 'VideoToolbox', 'Vision', 'AVFoundation'
s.source_files = 'StripeCardScan/StripeCardScan/**/*.swift'
s.ios.resource_bundle = { 'StripeCardScanBundle' => 'StripeCardScan/StripeCardScan/Resources/**/*.{lproj,mlmodelc}' }
s.dependency 'StripeCore', "#{s.version}"
end