-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPodfile
More file actions
70 lines (59 loc) · 1.34 KB
/
Podfile
File metadata and controls
70 lines (59 loc) · 1.34 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
project 'VerIDUI.xcodeproj'
workspace 'VerIDUI.xcworkspace'
platform :ios, '13'
use_frameworks!
def rx
pod 'RxSwift', '~> 6.9'
pod 'RxCocoa', '~> 6.9'
end
def zip
pod 'ZIPFoundation', '~> 0.9'
end
def devicekit
pod 'DeviceKit', '~> 5.5'
end
def asn1
pod 'ASN1Decoder', '~> 1.9'
end
def identity
pod 'Ver-ID-SDK-Identity', '>= 3.0.2', '< 4.0'
end
def spoofdetection
pod 'SpoofDeviceDetection/Model', '~> 1.1'
end
def protobuf
pod 'SwiftProtobuf', '~> 1.19'
end
abstract_target 'Ver-ID' do
rx
zip
devicekit
asn1
identity
spoofdetection
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'BUILD_LIBRARY_FOR_DISTRIBUTION'
config.build_settings.delete 'ENABLE_BITCODE'
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end
target 'VerIDUI'
target 'Ver-ID Sample' do
protobuf
end
target 'Preview' do
protobuf
end
target 'Thumbnails' do
protobuf
end
target 'VerIDUITests'
end