# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'TTSSDKDemo' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for TTSSDKDemo
  pod 'AFNetworking','4.0.1'
 pod 'SSZipArchive', '2.4.3'
 pod 'SocketRocket','0.6.0'
 pod 'YYModel'
end
post_install do |installer|
  installer.pods_project.targets.each do |target|
 
    target.build_configurations.each do |config|
      config.build_settings['ENABLE_BITCODE'] = 'NO'
      if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 12.0
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
    end
  end
end
end
