Podfile 407 B

123456789101112131415161718192021
  1. use_frameworks!
  2. platform :ios, '9.0'
  3. target 'BFFFmpeglib_Example' do
  4. pod 'BFFFmpeglib', :path => '../'
  5. target 'BFFFmpeglib_Tests' do
  6. inherit! :search_paths
  7. end
  8. end
  9. post_install do |installer|
  10. installer.pods_project.targets.each do |target|
  11. target.build_configurations.each do |config|
  12. config.build_settings['DYLIB_COMPATIBILITY_VERSION'] = ''
  13. end
  14. end
  15. end