-
Notifications
You must be signed in to change notification settings - Fork 55
/
Podfile
42 lines (31 loc) · 885 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
platform :ios, '10.0'
target 'SwiftStarter' do
use_frameworks!
pod 'CleverTap-iOS-SDK', :path =>'../'
target 'NotificationService' do
pod 'CTNotificationService'
end
target 'SwiftStarterTests' do
inherit! :search_paths
# Pods for testing
end
target 'SwiftStarterUITests' do
inherit! :search_paths
# Pods for testing
end
target 'SwiftTvOS' do
platform :tvos, '9.0'
pod 'CleverTap-iOS-SDK', :path =>'../'
end
target 'SwiftWatchOS Extension' do
platform :watchos, '3.0'
pod 'CleverTapWatchOS'
end
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', 'CLEVERTAP_HOST_WATCHOS=1']
end
end
end
end