forked from rudderlabs/rudder-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
45 lines (37 loc) · 1.04 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
source 'https://github.com/CocoaPods/Specs.git'
workspace 'Rudder.xcworkspace'
use_frameworks!
inhibit_all_warnings!
def shared_pods
pod 'Rudder', :path => '.'
end
target 'SampleObjC-iOS' do
project 'Examples/SampleObjC-iOS/SampleObjC-iOS.xcodeproj'
platform :ios, '13.0'
shared_pods
end
target 'SampleSwift-iOS' do
project 'Examples/SampleSwift-iOS/SampleSwift-iOS.xcodeproj'
platform :ios, '13.0'
shared_pods
end
target 'SampleSwift-iOS-APNs' do
project 'Examples/SampleSwift-iOS-APNs/SampleSwift-iOS-APNs.xcodeproj'
platform :ios, '13.0'
shared_pods
end
target 'SampleObjC-tvOS' do
project 'Examples/SampleObjC-tvOS/SampleObjC-tvOS.xcodeproj'
platform :tvos, '11.0'
shared_pods
end
target 'SampleObjC-watchOS WatchKit Extension' do
project 'Examples/SampleObjC-watchOS/SampleObjC-watchOS.xcodeproj'
platform :watchos, '7.3'
shared_pods
end
target 'SampleSwift-macOS' do
project 'Examples/SampleSwift-macOS/SampleSwift-macOS.xcodeproj'
platform :osx, '10.13'
shared_pods
end