-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathSift.podspec
38 lines (35 loc) · 920 Bytes
/
Sift.podspec
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
Pod::Spec.new do |spec|
spec.name = 'Sift'
spec.version = '2.2.2'
spec.authors = 'Sift Science'
spec.license = {
:type => 'MIT',
:file => 'LICENSE',
}
spec.homepage = 'https://github.com/SiftScience/sift-ios'
spec.source = {
:git => 'https://github.com/SiftScience/sift-ios.git',
:tag => "v#{spec.version.to_s}",
}
spec.summary = 'Machine learning fraud detection and prevention'
# Platform
spec.platform = :ios
spec.ios.deployment_target = '12.0'
spec.ios.resource_bundles = {"Sift" => ["PrivacyInfo.xcprivacy"]}
# Build settings
spec.ios.frameworks = [
'CoreLocation',
'CoreMotion',
'CoreTelephony',
'Foundation',
'UIKit',
]
# File patterns
spec.source_files = 'Sift/*.{h,m}', 'Sift/Vendor/*.{h,m}'
spec.public_header_files = [
'Sift/SiftCompatibility.h',
'Sift/SiftEvent.h',
'Sift/SiftQueueConfig.h',
'Sift/Sift.h',
]
end