-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPodfile
59 lines (47 loc) · 1.23 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
platform :ios, '12.0'
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
workspace 'AEPEdgeMedia'
project 'AEPEdgeMedia.xcodeproj'
pod 'SwiftLint', '0.52.0'
def core_pods
pod 'AEPCore'
end
def edge_pods
pod 'AEPEdge'
pod 'AEPEdgeIdentity'
end
target 'AEPEdgeMedia' do
core_pods
end
target 'UnitTests' do
core_pods
pod 'AEPTestUtils', :git => 'https://github.com/adobe/aepsdk-core-ios.git', :tag => 'testutils-5.2.2'
end
target 'FunctionalTests' do
core_pods
pod 'AEPTestUtils', :git => 'https://github.com/adobe/aepsdk-core-ios.git', :tag => 'testutils-5.2.2'
end
target 'IntegrationTests' do
core_pods
edge_pods
pod 'AEPTestUtils', :git => 'https://github.com/adobe/aepsdk-core-ios.git', :tag => 'testutils-5.2.2'
end
target 'TestAppiOS' do
core_pods
edge_pods
pod 'AEPAssurance'
end
target 'TestApptvOS' do
core_pods
edge_pods
end
post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |bc|
bc.build_settings['TVOS_DEPLOYMENT_TARGET'] = '12.0'
bc.build_settings['SUPPORTED_PLATFORMS'] = 'iphoneos iphonesimulator appletvos appletvsimulator'
bc.build_settings['TARGETED_DEVICE_FAMILY'] = "1,2,3"
end
end
end