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.

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