-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
65 lines (50 loc) · 1.28 KB
/
Podfile
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
source 'https://github.com/Fourthline-com/FourthlineSDK-iOS-Specs.git'
source 'https://cdn.cocoapods.org/'
platform :ios, '12.0'
workspace 'IdentHubSDK'
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
inhibit_all_warnings!
def fourthline_pods
pod 'FourthlineSDK', '2.34.2'
end
target 'IdentHubSDK' do
end
target 'IdentHubSDKTests' do
end
target 'IdentHubSDKTestBase' do
project 'Modules/Core/Core'
end
target 'IdentHubSDKCoreTests' do
project 'Modules/Core/Core'
end
target 'IdentHubSDKQESTests' do
project 'Modules/QES/QES'
end
target 'IdentHubSDKQESSnapshotTests' do
project 'Modules/QES/QES'
end
target 'IdentHubSDKFourthline' do
project 'Modules/IdentHubSDKFourthline/Fourthline'
fourthline_pods
end
target 'IdentHubSDKFourthlineTests' do
project 'Modules/IdentHubSDKFourthline/Fourthline'
fourthline_pods
end
target 'IdentHubSDKBank' do
project 'Modules/IdentHubSDKBank/Bank'
end
target 'IdentHubSDKBankTests' do
project 'Modules/IdentHubSDKBank/Bank'
end
target 'Sample' do
fourthline_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['BITCODE_GENERATION_MODE'] = 'bitcode'
end
end
end