forked from nubomediaTI/Kurento-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
33 lines (25 loc) · 759 Bytes
/
Podfile
File metadata and controls
33 lines (25 loc) · 759 Bytes
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
source 'https://github.com/artsy/Specs.git'
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
workspace 'Kurento-iOS'
def common_target_pods
pod 'CocoaLumberjack', :configurations => ['Debug']
pod 'SBJson', '~> 4.0.2'
pod 'libjingle_peerconnection', '~> 11177.2.0'
pod 'SocketRocket', '~> 0.4.1'
end
target 'KurentoToolbox' do
xcodeproj 'Kurento-iOS'
common_target_pods
end
target 'KurentoToolboxTests' do
xcodeproj 'Kurento-iOS'
pod 'KurentoToolbox', :path => "."
end
target 'KurentoToolboxDemo' do
xcodeproj 'KurentoToolboxDemo/KurentoToolboxDemo'
pod 'KurentoToolbox', :path => "."
pod 'MBProgressHUD', '~> 0.9.2'
pod 'Reachability', '~> 3.2'
pod 'DGActivityIndicatorView'
end