forked from PopcornTimeTV/PopcornTimeTV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
47 lines (41 loc) · 1.26 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
use_frameworks!
source 'https://github.com/CocoaPods/Specs'
source 'https://github.com/angryDuck2/CocoaSpecs'
source 'https://github.com/PopcornTimeTV/Specs'
def pods
pod 'PopcornTorrent', '~> 1.1.5'
pod 'PopcornKit', '~> 3.2.13'
pod 'XCDYouTubeKit', '~> 2.5.3'
pod 'Alamofire', '~> 4.2.0'
pod 'AlamofireImage', '~> 3.2.0'
pod 'SwiftyTimer', '~> 2.0.0'
pod 'CSStickyHeaderFlowLayout', '~> 0.2.11-1'
pod 'FloatRatingView', '~> 2.0.1'
pod 'Reachability', :git => 'https://github.com/tonymillion/Reachability'
pod 'MarqueeLabel/Swift', '~> 3.0.0'
end
target 'PopcornTimeiOS' do
platform :ios, '9.0'
pods
pod 'AlamofireNetworkActivityIndicator', '~> 2.1.0'
pod 'google-cast-sdk', '~> 3.3.0'
pod 'OBSlider', '~> 1.1.1'
pod '1PasswordExtension', '~> 1.8.4'
pod 'MobileVLCKit-unstable', '~> 3.0.0a24'
end
target 'PopcornTimetvOS' do
platform :tvos, '9.0'
pods
pod 'TVVLCKit', '~> 2.1.0'
pod 'MBCircularProgressBar', '~> 0.3.5-1'
end
target 'TopShelf' do
pod 'PopcornKit', '~> 3.2.13'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end