Podfile 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. platform:ios,'13.0'
  2. inhibit_all_warnings!
  3. use_modular_headers!
  4. def pods
  5. pod 'SnapKit'
  6. pod 'Material'
  7. pod 'KVOController'
  8. pod 'SVProgressHUD'
  9. pod 'FDFullscreenPopGesture'
  10. pod 'Moya/RxSwift'
  11. pod 'ObjectMapper'
  12. pod 'SwiftyJSON'
  13. pod 'DeviceKit'
  14. pod 'DefaultsKit', :git => 'https://github.com/nmdias/DefaultsKit'
  15. # pod 'IceCream'
  16. pod 'RealmSwift'
  17. pod 'CryptoSwift'
  18. pod 'IQKeyboardManagerSwift'
  19. pod 'RxSwift'
  20. pod 'RxCocoa'
  21. pod 'RxGesture'
  22. pod 'RxDataSources'
  23. pod 'NSObject+Rx'
  24. pod 'MJRefresh'
  25. pod 'Kingfisher'
  26. pod 'MercariQRScanner', :git => 'https://github.com/Finb/QRScanner'
  27. pod 'DropDown'
  28. pod 'PLCrashReporter'
  29. end
  30. target 'Bark' do
  31. pods
  32. target 'BarkTests' do
  33. inherit! :search_paths
  34. end
  35. end
  36. target 'NotificationServiceExtension' do
  37. # pod 'IceCream'
  38. pod 'RealmSwift'
  39. pod 'Kingfisher'
  40. pod 'CryptoSwift'
  41. pod 'SwiftyJSON'
  42. end
  43. post_install do |installer|
  44. installer.pods_project.targets.each do |target|
  45. target.build_configurations.each do |config|
  46. if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 13.0
  47. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
  48. end
  49. config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
  50. end
  51. end
  52. end