# Uncomment the next line to define a global platform for your project platform :ios, '13.6' def shared_pods pod 'RxSwift', '6.5.0' pod 'RxSwiftExt' pod 'RxCocoa', '6.5.0' pod 'RxGesture', '4.0.2' pod 'Alamofire', '~> 4.9' pod 'SwiftyJSON', '5.0.1' pod 'Firebase/Core' pod 'Firebase/Auth' pod 'Firebase/Messaging' pod 'Firebase/Crashlytics' pod 'Firebase/Analytics' pod 'BRYXBanner' pod 'SDWebImage/GIF', '~> 4.4.6' pod 'ObjectMapper', '~> 4.1.0' pod 'VisualEffectView' pod 'MBProgressHUD', '~> 1.1.0' pod 'Hex' pod 'SwiftyTimer' pod 'XLPagerTabStrip', '~> 8.0' pod 'PMAlertController' pod 'RSKImageCropper' pod 'AlamofireNetworkActivityLogger', '~> 2.3' pod 'IQKeyboardManagerSwift', '6.5.0' pod 'LGSideMenuController' pod 'Localize-Swift', '~> 2.0' pod 'DTTJailbreakDetection' pod 'KeychainAccess' pod 'Hero' pod 'PanModal' pod 'SROTPView' pod 'Kingfisher' pod 'NVActivityIndicatorView' pod 'APIKit', '5.4.0' pod 'RxRelay', '6.5.0' pod 'Nuke', '9.5.0' pod 'RxNuke', '2.0.1' pod 'Swinject', '2.7.1' pod 'SwinjectAutoregistration', '2.8.1' pod 'SwinjectStoryboard', '2.2.2' pod 'lottie-ios', '3.4.4' pod 'R.swift', '6.1.0' pod 'R.swift.Library', '5.3.0' pod 'iProov', '9.5.1' pod 'Socket.IO-Client-Swift', '16.0.1' pod 'Starscream', '4.0.4' pod 'FLEX', '~> 3.0', :configurations => ['Debug'] end project 'GME Remit.xcodeproj' target 'GME Remit' do # Comment the next line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! # Pods for GMERemittance inhibit_all_warnings! shared_pods #essentialPods target 'GMERemittanceTests' do inherit! :search_paths # Pods for testing shared_pods end target 'GMERemittanceUITests' do inherit! :search_paths # Pods for testing shared_pods 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'] = '11.0' end end end installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['CODE_SIGNING_REQUIRED'] = "NO" config.build_settings['CODE_SIGNING_ALLOWED'] = "NO" config.build_settings['ENABLE_BITCODE'] = "YES" config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES' end if ['SwinjectStoryboard'].include? target.name target.build_configurations.each do |config| config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'NO' end end end end