-
Notifications
You must be signed in to change notification settings - Fork 3
/
Podfile
75 lines (62 loc) · 1.83 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
platform :ios, '9.0'
workspace 'SendBirdCallsExample'
project 'BaseSample/BaseSample.xcodeproj'
project 'ScreenCapture/ScreenCapture.xcodeproj'
project 'ScreenRecord/ScreenRecord.xcodeproj'
project 'ScreenShare/ScreenShare.xcodeproj'
project 'MediaControl/MediaControl.xcodeproj'
project 'CallHistory/CallHistory.xcodeproj'
project 'SoundEffect/SoundEffect.xcodeproj'
project 'LocalViewControl/LocalViewControl.xcodeproj'
project 'VoIPNotifications/VoIPNotifications.xcodeproj'
project 'AutoAnswer/AutoAnswer.xcodeproj'
project 'SwiftUIBasic/SwiftUIBasic.xcodeproj'
project 'HoldAndResume/HoldAndResume.xcodeproj'
target 'BaseSample' do
project 'BaseSample/BaseSample.xcodeproj'
pod 'SendBirdCalls'
end
target 'ScreenCapture' do
project 'ScreenCapture/ScreenCapture.xcodeproj'
pod 'SendBirdCalls'
end
target 'ScreenRecord' do
project 'ScreenRecord/ScreenRecord.xcodeproj'
pod 'SendBirdCalls'
end
target 'ScreenShare' do
project 'ScreenShare/ScreenShare.xcodeproj'
pod 'SendBirdCalls'
end
target 'MediaControl' do
project 'MediaControl/MediaControl.xcodeproj'
pod 'SendBirdCalls'
end
target 'CallHistory' do
project 'CallHistory/CallHistory.xcodeproj'
pod 'SendBirdCalls'
end
target 'SoundEffect' do
project 'SoundEffect/SoundEffect.xcodeproj'
pod 'SendBirdCalls'
end
target 'LocalViewControl' do
project 'LocalViewControl/LocalViewControl.xcodeproj'
pod 'SendBirdCalls'
end
target 'VoIPNotifications' do
project 'VoIPNotifications/VoIPNotifications.xcodeproj'
pod 'SendBirdCalls'
end
target 'AutoAnswer' do
project 'AutoAnswer/AutoAnswer.xcodeproj'
pod 'SendBirdCalls'
end
target 'SwiftUIBasic' do
project 'SwiftUIBasic/SwiftUIBasic.xcodeproj'
pod 'SendBirdCalls'
end
target 'HoldAndResume' do
project 'HoldAndResume/HoldAndResume.xcodeproj'
pod 'SendBirdCalls'
end