-
Notifications
You must be signed in to change notification settings - Fork 39
/
Podfile
75 lines (66 loc) · 1.75 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
67
68
69
70
71
72
73
74
75
source 'https://github.com/rudderlabs/Specs.git'
workspace 'Rudder.xcworkspace'
use_frameworks!
inhibit_all_warnings!
install! 'cocoapods', :warn_for_unused_master_specs_repo => false
def shared_pods
pod 'Rudder', :path => '.'
end
def shared_utility_pods
pod 'MetricsReporter'
pod 'RudderKit'
pod 'RSCrashReporter'
end
target 'Rudder-iOS' do
project 'Rudder.xcodeproj'
platform :ios, '12.0'
shared_utility_pods
target 'RudderTests-iOS' do
inherit! :search_paths
shared_utility_pods
end
end
target 'Rudder-tvOS' do
project 'Rudder.xcodeproj'
platform :tvos, '11.0'
shared_utility_pods
target 'RudderTests-tvOS' do
inherit! :search_paths
shared_utility_pods
end
end
target 'Rudder-watchOS' do
project 'Rudder.xcodeproj'
platform :watchos, '7.0'
shared_utility_pods
target 'RudderTests-watchOS' do
inherit! :search_paths
shared_utility_pods
end
end
target 'RudderSampleAppObjC' do
project 'Examples/RudderSampleAppObjC/RudderSampleAppObjC.xcodeproj'
platform :ios, '12.0'
shared_pods
shared_utility_pods
pod 'SQLCipher', '~> 4.0'
end
target 'RudderSampleAppSwift' do
project 'Examples/RudderSampleAppSwift/RudderSampleAppSwift.xcodeproj'
platform :ios, '12.0'
shared_pods
shared_utility_pods
pod 'SQLCipher', '~> 4.0'
end
target 'RudderSampleApptvOSObjC' do
project 'Examples/RudderSampleApptvOSObjC/RudderSampleApptvOSObjC.xcodeproj'
platform :tvos, '11.0'
shared_pods
shared_utility_pods
end
target 'RudderSampleAppwatchOSObjC WatchKit Extension' do
project 'Examples/RudderSampleAppwatchOSObjC/RudderSampleAppwatchOSObjC.xcodeproj'
platform :watchos, '8.0'
shared_pods
shared_utility_pods
end