Created
November 21, 2016 10:55
-
-
Save thiagolioy/1db64d8ef87f341af38570dcaf106b8f to your computer and use it in GitHub Desktop.
MarvelApp podfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Uncomment the next line to define a global platform for your project | |
platform :ios, '9.0' | |
target 'Marvel' do | |
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks | |
use_frameworks! | |
plugin 'cocoapods-keys', { | |
:project => "Marvel", | |
:keys => [ | |
"MarvelApiKey", | |
"MarvelPrivateKey" | |
]} | |
# Pods for Marvel | |
pod 'SwiftGen' | |
pod 'RxSwift', '~> 3.0.0-beta.2' | |
pod 'Moya/RxSwift','~> 8.0.0-beta.1' | |
pod 'Moya-ObjectMapper/RxSwift', :git => 'https://github.com/ivanbruel/Moya-ObjectMapper' | |
pod 'CryptoSwift' | |
pod 'Dollar' | |
pod 'Kingfisher' | |
pod "Reusable" | |
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 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment