platform :ios, '9.0'
use_frameworks!

target 'YACReader' do
  # Pods for YACReader
  pod 'ObjectiveDropboxOfficial'
  pod 'GoogleAPIClientForREST'
  pod 'GoogleAPIClientForREST/Core'
  pod 'GoogleAPIClientForREST/Drive'
  pod 'GTMAppAuth'
  pod 'SDWebImage'
  pod 'UnrarKit'
  pod 'OneDriveSDK'
end

post_install do |installer|
    installer.pods_project.targets.each do |target|
        if "#{target}" == "AppAuth"
            target.build_configurations.each do |config|
                config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
            end
        end
    end
end

