use_frameworks!

platform :ios, '9.0'

#require 'pry'
#open source
source 'https://github.com/CocoaPods/Specs.git'
#sour company
source 'git@git.wanmeizhensuo.com:gengmeiios/GMSpecs.git'

target 'GMFlutterSDK_Example' do
  pod 'GMFlutterSDK', :path => '../'

  pod 'GMPhobos', '2.1.4'
  target 'GMFlutterSDK_Tests' do
    inherit! :search_paths

    
  end
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['ENABLE_BITCODE'] = 'NO'
    end
  end
end