-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathyoti-doc-scan-react-native.podspec
More file actions
29 lines (27 loc) · 1 KB
/
yoti-doc-scan-react-native.podspec
File metadata and controls
29 lines (27 loc) · 1 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
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |spec|
spec.name = "yoti-doc-scan-react-native"
spec.summary = package["description"]
spec.homepage = package["homepage"]
spec.license = package["license"]
spec.author = package["author"]
spec.version = package["version"]
spec.pod_target_xcconfig = {
"FRAMEWORK_SEARCH_PATHS" => [
"${PODS_XCFRAMEWORKS_BUILD_DIR}/YotiSDKDocument",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/YotiSDKIdentityDocument",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/YotiSDKSupplementaryDocument",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/YotiSDKFace",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/YotiSDKFaceTec",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/YotiSDKFaceCapture"
]
}
spec.source = {
:git => "https://github.com/getyoti/yoti-doc-scan-react-native.git", :tag => "#{spec.version}"
}
spec.source_files = "ios/**/*.{h,m,swift}"
spec.platform = :ios, "11.0"
spec.dependency "React"
spec.dependency "YotiSDKCore"
end