Newer
Older
Productization_H5_IOS / Podfile
@zhangfeng zhangfeng on 8 Aug 598 bytes commit first
platform:ios,'12.0'
target 'template' do
  use_frameworks!
  inhibit_all_warnings!
  
  pod 'RongCloudIM_Private/IMLib'
  pod 'RongCloudIM_Private/IMKit'
  pod 'RongCloudRTC_Private/RongCallLib'
  pod 'RongCloudRTC_Private/RongCallKit'
  
  #swift 库
  pod 'SnapKit', '~> 5.6.0'
  
  #网络监听
  pod 'ReachabilitySwift'
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'] = '12.0'
       end
    end
  end
end