forked from paymentwall/paymentwall-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPWCardScannerPlugin.podspec
More file actions
23 lines (18 loc) · 897 Bytes
/
Copy pathPWCardScannerPlugin.podspec
File metadata and controls
23 lines (18 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "PWCardScannerPlugin"
s.version = "3.0.0"
s.summary = "PWCardScannerPlugin"
s.description = "Plugin to support credit card scanner for PWCoreSDK"
s.homepage = "http://paymentwall.com"
s.author = { "tien.vu" => "kyle.vu@paymentwall.com" }
s.platform = :ios
s.ios.deployment_target = '8.0'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.requires_arc = true
s.source = { :git => "https://github.com/paymentwall/paymentwall-ios-sdk-master.git", :tag => 'v'+String(s.version) }
s.source_files = "Plugins/PWCardScannerPlugin", "Plugins/PWCardScannerPlugin/**/*.{h,m}"
s.vendored_libraries = "Plugins/PWCardScannerPlugin/libPWCardScannerPlugin.a"
s.dependency 'PWCoreSDK', '>= 3.0.0'
s.dependency 'CardIO'
s.libraries = 'PWCoreSDK', 'CardIO', 'opencv_core', 'opencv_imgproc'
end