-
Notifications
You must be signed in to change notification settings - Fork 61
/
Podfile
51 lines (40 loc) · 1.08 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
platform :ios, '9.0'
use_modular_headers!
workspace 'Leanplum.xcworkspace'
def clever_tap
pod 'CleverTap-iOS-SDK', '~> 7.0'
end
target 'LeanplumSDKApp' do
project 'LeanplumSDKApp/LeanplumSDKApp.xcodeproj'
use_frameworks!
clever_tap
end
target 'LeanplumSDKTests' do
project 'LeanplumSDKApp/LeanplumSDKApp.xcodeproj'
use_frameworks!
pod 'OCMock', '~> 3.3.1'
pod 'OHHTTPStubs', '~> 9.0.0'
end
target 'Leanplum' do
project 'LeanplumSDK/LeanplumSDK.xcodeproj'
workspace 'Leanplum.xcworkspace'
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Leanplum
clever_tap
end
#
target 'Leanplum-Static' do
project 'LeanplumSDK/LeanplumSDK.xcodeproj'
# Pods for Leanplum-Static
clever_tap
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end