forked from PopcornTimeTV/PopcornTimeTV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
72 lines (63 loc) · 1.89 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
use_frameworks!
source 'https://github.com/CocoaPods/Specs'
source 'https://github.com/PopcornTimeTV/Specs'
def pods
pod 'PopcornTorrent', '~> 1.3.0'
pod 'XCDYouTubeKit', '~> 2.7.0'
pod 'Alamofire', '~> 4.8.0'
pod 'AlamofireImage', '~> 3.5.0'
pod 'SwiftyTimer', '~> 2.1.0'
pod 'FloatRatingView', '~> 3.0.1'
pod 'Reachability', :git => 'https://github.com/tonymillion/Reachability'
pod 'MarqueeLabel/Swift', '~> 3.2.0'
pod 'ObjectMapper', '~> 3.4.0'
end
target 'PopcornTimeiOS' do
platform :ios, '9.0'
pods
pod 'AlamofireNetworkActivityIndicator', '~> 2.3.0'
pod 'google-cast-sdk', '~> 4.3'
pod 'OBSlider', '~> 1.1.1'
pod '1PasswordExtension', '~> 1.8.4'
pod 'MobileVLCKit', '~> 3.3.0'
end
target 'PopcornTimetvOS' do
platform :tvos, '10.2'
pods
pod 'TvOSMoreButton', '~> 1.2.0'
pod 'TVVLCKit', '~> 3.3.0'
pod 'MBCircularProgressBar', '~> 0.3.5-1'
end
target 'TopShelf' do
platform :tvos, '10.2'
pod 'ObjectMapper', '~> 3.4.0'
end
def kitPods
pod 'Alamofire', '~> 4.8.0'
pod 'ObjectMapper', '~> 3.4.0'
pod 'SwiftyJSON', '~> 4.2.0'
pod 'Locksmith', '~> 4.0.0'
end
target 'PopcornKit tvOS' do
platform :tvos, '10.2'
kitPods
end
target 'PopcornKit iOS' do
platform :ios, '9.0'
kitPods
pod 'google-cast-sdk', '~> 4.3'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
if ['FloatRatingView-iOS', 'FloatRatingView-tvOS'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
end