forked from adobe/aepsdk-optimize-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
56 lines (44 loc) · 909 Bytes
/
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
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
workspace 'AEPOptimize'
project 'AEPOptimize.xcodeproj'
pod 'SwiftLint', '0.44.0'
target 'AEPOptimize' do
# Pods for AEPOptimize
pod 'AEPCore'
end
target 'UnitTests' do
pod 'AEPCore'
end
target 'FunctionalTests' do
pod 'AEPCore'
end
target 'IntegrationTests' do
pod 'AEPCore'
pod 'AEPEdge'
pod 'AEPIdentity'
end
def shared_app
pod 'AEPSignal'
pod 'AEPAssurance'
end
def shared_all
pod 'AEPCore'
pod 'AEPLifecycle'
pod 'AEPIdentity'
pod 'AEPEdge'
pod 'AEPEdgeConsent'
pod 'AEPEdgeIdentity'
end
abstract_target 'shared' do
shared_all
target 'AEPOptimizeDemoAppExtension'
target 'AEPOptimizeDemoSwiftUI' do
shared_app
end
target 'AEPOptimizeDemoObjC' do
shared_app
end
end