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

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

  # Pods for NemonicSdkTest
  pod 'DLRadioButton', '~> 1.4'
  pod 'Toast-Swift', '~> 5.0.1'

  target 'NemonicSdkTestTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'NemonicSdkTestUITests' do
    # Pods for testing
  end

end

post_install do |installer|
    installer.generated_projects.each do |project|
          project.targets.each do |target|
              target.build_configurations.each do |config|
                  config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
               end
          end
   end
end
