Podfile 734 B

123456789101112131415161718192021222324252627
  1. platform :ios, '11.0'
  2. use_frameworks!
  3. # ignore all warnings from all dependencies
  4. inhibit_all_warnings!
  5. target 'deltachat-ios' do
  6. pod 'Swifter', :git => 'https://github.com/httpswift/swifter.git', :branch => 'stable'
  7. pod 'SwiftLint'
  8. pod 'SwiftFormat/CLI'
  9. # pod 'openssl-ios-bitcode'
  10. pod 'ReachabilitySwift'
  11. pod 'SCSiriWaveformView'
  12. pod 'SDWebImage', :modular_headers => true
  13. pod 'SDWebImageWebPCoder', :modular_headers => true
  14. pod 'SDWebImageSVGKitPlugin'
  15. pod 'SVGKit', :modular_headers => true
  16. target 'deltachat-iosTests' do
  17. inherit! :search_paths
  18. # Pods for testing
  19. end
  20. end
  21. target 'DcShare' do
  22. pod 'SDWebImage', :modular_headers => true
  23. pod 'SDWebImageWebPCoder', :modular_headers => true
  24. end