forked from blinkcard/blinkcard-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMBBlinkCard.podspec
More file actions
45 lines (34 loc) · 1.8 KB
/
MBBlinkCard.podspec
File metadata and controls
45 lines (34 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Pod::Spec.new do |s|
s.name = "MBBlinkCard"
s.version = "1.0.1"
s.summary = "A delightful component for payment card scanning"
s.homepage = "http://microblink.com"
s.description = <<-DESC
BlinkCard SDK is a delightful component for quick and easy scanning of payment cards. The SDK is powered with [Microblink's](http://www.microblink.com) industry-proven and world leading OCR and barcode scanning technology, and offers:
- integrated camera management
- layered API, allowing everything from simple integration to complex UX customizations.
- lightweight and no internet connection required
- enteprise-level security standards
BlinkCard is a part of family of SDKs developed by [Microblink](http://www.microblink.com) for optical text recognition, barcode scanning, ID document scanning, payment card scanning and many others.
DESC
s.license = {
:type => 'commercial',
:text => <<-LICENSE
© 2013-2019 Microblink Ltd. All rights reserved.
LICENSE
}
s.authors = {
"Microblink" => "info@microblink.com",
}
s.source = {
:http => 'https://github.com/BlinkCard/blinkcard-ios/releases/download/v1.0.1/blinkcard-ios_v1.0.1.tar.gz'
}
s.platform = :ios
# ――― MULTI-PLATFORM VALUES ――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '8.0.0'
s.ios.resources = "Microblink.bundle"
s.ios.requires_arc = false
s.ios.vendored_frameworks = 'Microblink.framework'
s.ios.frameworks = 'Accelerate', 'AVFoundation', 'AudioToolbox', 'AssetsLibrary', 'CoreMedia'
s.ios.libraries = 'c++', 'iconv', 'z'
end