forked from adobe/aepsdk-optimize-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
81 lines (67 loc) · 2.24 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
workspace 'AEPOptimize'
project 'AEPOptimize.xcodeproj'
pod 'SwiftLint', '0.52.0'
# ==================
# SHARED POD GROUPS
# ==================
def lib_main
pod 'AEPCore'
pod 'AEPServices'
pod 'AEPRulesEngine'
end
def lib_dev
pod 'AEPCore', :git => 'https://github.com/adobe/aepsdk-core-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPServices', :git => 'https://github.com/adobe/aepsdk-core-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPRulesEngine', :git => 'https://github.com/adobe/aepsdk-rulesengine-ios.git', :branch => 'dev-v5.0.0'
end
def app_main
lib_main
pod 'AEPLifecycle'
pod 'AEPSignal'
pod 'AEPIdentity'
pod 'AEPEdge'
pod 'AEPEdgeConsent'
pod 'AEPEdgeIdentity'
end
def app_dev
pod 'AEPCore', :git => 'https://github.com/adobe/aepsdk-core-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPServices', :git => 'https://github.com/adobe/aepsdk-core-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPRulesEngine', :git => 'https://github.com/adobe/aepsdk-rulesengine-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPLifecycle', :git => 'https://github.com/adobe/aepsdk-core-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPSignal', :git => 'https://github.com/adobe/aepsdk-core-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPIdentity', :git => 'https://github.com/adobe/aepsdk-core-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPEdge', :git => 'https://github.com/adobe/aepsdk-edge-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPEdgeConsent', :git => 'https://github.com/adobe/aepsdk-edgeconsent-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPEdgeIdentity', :git => 'https://github.com/adobe/aepsdk-edgeidentity-ios.git', :branch => 'dev-v5.0.0'
end
# ==================
# TARGET DEFINITIONS
# ==================
target 'AEPOptimize' do
# Pods for AEPOptimize
lib_main
end
target 'UnitTests' do
lib_main
end
target 'FunctionalTests' do
lib_main
end
target 'IntegrationTests' do
app_main
end
target 'AEPOptimizeDemoAppExtension' do
app_main
end
target 'AEPOptimizeDemoSwiftUI' do
app_main
pod 'AEPAssurance'
end
target 'AEPOptimizeDemoObjC' do
app_main
pod 'AEPAssurance'
end