forked from rudderlabs/metrics-reporter-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
67 lines (57 loc) · 1.48 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
workspace 'MetricsReporter.xcworkspace'
use_frameworks!
inhibit_all_warnings!
install! 'cocoapods', :warn_for_unused_master_specs_repo => false
def shared_pods
pod 'MetricsReporter', :path => '.'
end
def shared_dependent_pods
pod 'RSCrashReporter'
pod 'RudderKit'
end
target 'MetricsReporter-iOS' do
project 'MetricsReporter.xcodeproj'
platform :ios, '12.0'
shared_dependent_pods
target 'MetricsReporterTests-iOS' do
inherit! :search_paths
shared_dependent_pods
end
end
target 'MetricsReporter-tvOS' do
project 'MetricsReporter.xcodeproj'
platform :tvos, '11.0'
shared_dependent_pods
target 'MetricsReporterTests-tvOS' do
inherit! :search_paths
shared_dependent_pods
end
end
target 'MetricsReporter-watchOS' do
project 'MetricsReporter.xcodeproj'
platform :watchos, '7.0'
shared_dependent_pods
target 'MetricsReporterTests-watchOS' do
inherit! :search_paths
shared_dependent_pods
end
end
target 'MetricsReporter-macOS' do
project 'MetricsReporter.xcodeproj'
platform :macos, '10.13'
shared_dependent_pods
target 'MetricsReporterTests-macOS' do
inherit! :search_paths
shared_dependent_pods
end
end
target 'SampleSwift' do
project 'Examples/SampleSwift/SampleSwift.xcodeproj'
platform :ios, '12.0'
shared_pods
end
target 'SampleObjC' do
project 'Examples/SampleObjC/SampleObjC.xcodeproj'
platform :ios, '12.0'
shared_pods
end