You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
2.5 KiB

6 years ago
2 years ago
6 years ago
2 years ago
2 years ago
2 years ago
5 years ago
2 years ago
6 years ago
6 years ago
2 years ago
6 years ago
6 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
6 years ago
2 years ago
2 years ago
6 years ago
6 years ago
2 years ago
6 years ago
2 years ago
1 year ago
2 years ago
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '13.6'
  3. def shared_pods
  4. pod 'RxSwift', '6.5.0'
  5. pod 'RxSwiftExt'
  6. pod 'RxCocoa', '6.5.0'
  7. pod 'RxGesture', '4.0.2'
  8. pod 'Alamofire', '~> 4.9'
  9. pod 'SwiftyJSON', '5.0.1'
  10. pod 'Firebase/Core'
  11. pod 'Firebase/Auth'
  12. pod 'Firebase/Messaging'
  13. pod 'Firebase/Crashlytics'
  14. pod 'Firebase/Analytics'
  15. pod 'BRYXBanner'
  16. pod 'SDWebImage/GIF', '~> 4.4.6'
  17. pod 'ObjectMapper', '~> 4.1.0'
  18. pod 'VisualEffectView'
  19. pod 'MBProgressHUD', '~> 1.1.0'
  20. pod 'Hex'
  21. pod 'SwiftyTimer'
  22. pod 'XLPagerTabStrip', '~> 8.0'
  23. pod 'PMAlertController'
  24. pod 'RSKImageCropper'
  25. pod 'AlamofireNetworkActivityLogger', '~> 2.3'
  26. pod 'IQKeyboardManagerSwift', '6.5.0'
  27. pod 'LGSideMenuController'
  28. pod 'Localize-Swift', '~> 2.0'
  29. pod 'DTTJailbreakDetection'
  30. pod 'KeychainAccess'
  31. pod 'Hero'
  32. pod 'PanModal'
  33. pod 'SROTPView'
  34. pod 'Kingfisher'
  35. pod 'NVActivityIndicatorView'
  36. pod 'APIKit', '5.4.0'
  37. pod 'RxRelay', '6.5.0'
  38. pod 'Nuke', '9.5.0'
  39. pod 'RxNuke', '2.0.1'
  40. pod 'Swinject', '2.7.1'
  41. pod 'SwinjectAutoregistration', '2.8.1'
  42. pod 'SwinjectStoryboard', '2.2.2'
  43. pod 'lottie-ios', '3.4.4'
  44. pod 'R.swift', '6.1.0'
  45. pod 'R.swift.Library', '5.3.0'
  46. pod 'iProov', '9.5.1'
  47. pod 'Socket.IO-Client-Swift', '16.0.1'
  48. pod 'Starscream', '4.0.4'
  49. pod 'FLEX', '~> 3.0', :configurations => ['Debug']
  50. end
  51. project 'GME Remit.xcodeproj'
  52. target 'GME Remit' do
  53. # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  54. use_frameworks!
  55. # Pods for GMERemittance
  56. inhibit_all_warnings!
  57. shared_pods
  58. #essentialPods
  59. target 'GMERemittanceTests' do
  60. inherit! :search_paths
  61. # Pods for testing
  62. shared_pods
  63. end
  64. target 'GMERemittanceUITests' do
  65. inherit! :search_paths
  66. # Pods for testing
  67. shared_pods
  68. end
  69. end
  70. post_install do |installer|
  71. installer.generated_projects.each do |project|
  72. project.targets.each do |target|
  73. target.build_configurations.each do |config|
  74. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  75. end
  76. end
  77. end
  78. installer.pods_project.targets.each do |target|
  79. target.build_configurations.each do |config|
  80. config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
  81. config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
  82. config.build_settings['ENABLE_BITCODE'] = "YES"
  83. config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
  84. end
  85. if ['SwinjectStoryboard'].include? target.name
  86. target.build_configurations.each do |config|
  87. config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'NO'
  88. end
  89. end
  90. end
  91. end