Skip to content

Instantly share code, notes, and snippets.

@williamoconnorme
Created September 14, 2017 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save williamoconnorme/61e77a1b92babff51e3c0a8c042de76e to your computer and use it in GitHub Desktop.
Save williamoconnorme/61e77a1b92babff51e3c0a8c042de76e to your computer and use it in GitHub Desktop.
PopcorntimeTV xCode 9 podfile
use_frameworks!
source 'https://github.com/CocoaPods/Specs'
source 'https://github.com/PopcornTimeTV/Specs'
def pods
pod 'PopcornTorrent', '~> 1.1.13'
pod 'XCDYouTubeKit', '~> 2.5.5'
pod 'Alamofire', '~> 4.4.0'
pod 'AlamofireImage', '~> 3.2.0'
pod 'SwiftyTimer', '~> 2.0.0'
pod 'FloatRatingView', '~> 2.0.1'
pod 'Reachability', :git => 'https://github.com/tonymillion/Reachability'
pod 'MarqueeLabel/Swift', '~> 3.0.3'
pod 'ObjectMapper', :git => 'https://github.com/Hearst-DD/ObjectMapper', :branch => 'swift-4'
end
target 'PopcornTimeiOS' do
platform :ios, '9.0'
pods
pod 'AlamofireNetworkActivityIndicator', '~> 2.1.0'
pod 'google-cast-sdk', '~> 3.4.0'
pod 'OBSlider', '~> 1.1.1'
pod '1PasswordExtension', '~> 1.8.4'
pod 'MobileVLCKit-unstable', '~> 3.0.0a24'
end
target 'PopcornTimetvOS' do
platform :tvos, '10.0'
pods
pod 'TvOSMoreButton', :git => 'https://github.com/cgoldsby/TvOSMoreButton'
pod 'TVVLCKit', '~> 2.1.0'
pod 'MBCircularProgressBar', '~> 0.3.5-1'
end
target 'TopShelf' do
platform :tvos, '10.0'
pod 'ObjectMapper', :git => 'https://github.com/Hearst-DD/ObjectMapper', :branch => 'swift-4'
end
def kitPods
pod 'Alamofire', '~> 4.4.0'
pod 'ObjectMapper', :git => 'https://github.com/Hearst-DD/ObjectMapper', :branch => 'swift-4'
pod 'AlamofireXMLRPC', :git => 'https://github.com/tommy071/AlamofireXMLRPC'
pod 'SwiftyJSON', '~> 3.1.4'
pod 'Locksmith', '~> 3.0.0'
end
target 'PopcornKit tvOS' do
platform :tvos, '10.0'
kitPods
end
target 'PopcornKit iOS' do
platform :ios, '9.0'
kitPods
pod 'google-cast-sdk', '~> 3.4.0'
end
@williamoconnorme
Copy link
Author

Use AlamofireXMLRPC swift 4.0 fork by tommy071 and ObjectMapper swift 4.0 branch so xCode can compile the app

@gustavolessa23
Copy link

Do you know if it's compatible with tvOS 10.2.2? Thanks

@williamoconnorme
Copy link
Author

@gustavolessadublin It may not because of the Swift 4 pods. Some of them are Swift 3 compatible but I haven't tested. I've only been able to try this with tvOS 11

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment