-
Notifications
You must be signed in to change notification settings - Fork 15
/
Podfile
66 lines (54 loc) · 1.56 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
# 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!
$dev_repo = 'https://github.com/adobe/aepsdk-core-ios.git'
$dev_branch = 'staging'
workspace 'AEPTarget'
project 'AEPTarget.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 => $dev_repo, :branch => $dev_branch
pod 'AEPServices', :git => $dev_repo, :branch => $dev_branch
pod 'AEPRulesEngine', :git => 'https://github.com/adobe/aepsdk-rulesengine-ios.git', :branch => $dev_branch
end
def app_main
lib_main
pod 'AEPIdentity'
pod 'AEPLifecycle'
pod 'AEPSignal'
pod 'AEPAnalytics', :git => 'https://github.com/adobe/aepsdk-analytics-ios.git', :branch => $dev_branch
# pod 'AEPAssurance'
end
def app_dev
lib_dev
pod 'AEPIdentity', :git => $dev_repo, :branch => $dev_branch
pod 'AEPLifecycle', :git => $dev_repo, :branch => $dev_branch
pod 'AEPSignal', :git => $dev_repo, :branch => $dev_branch
pod 'AEPAnalytics'
pod 'AEPAssurance', :git => 'https://github.com/adobe/aepsdk-assurance-ios.git', :branch => $dev_branch
end
# ==================
# TARGET DEFINITIONS
# ==================
target 'AEPTarget' do
lib_main
end
target 'AEPTargetDemoApp' do
app_main
end
target 'AEPTargetDemoObjCApp' do
app_main
end
target 'AEPTargetTests' do
app_main
pod 'SwiftyJSON', '~> 5.0'
end