Podfile 819 B

123456789101112131415161718192021222324252627282930313233343536
  1. target 'deltachat-ios' do
  2. platform :ios, '10.0'
  3. use_frameworks!
  4. swift_version = '4.2'
  5. # ignore all warnings from all dependencies
  6. inhibit_all_warnings!
  7. pod 'SwiftLint'
  8. pod 'SwiftFormat/CLI'
  9. # pod 'openssl-ios-bitcode'
  10. pod 'ReachabilitySwift'
  11. pod 'SwiftyBeaver'
  12. pod 'DBDebugToolkit'
  13. pod 'SCSiriWaveformView'
  14. pod 'SDWebImage', '~> 5.9.1'
  15. pod 'SDWebImageWebPCoder'
  16. pod 'SDWebImageSVGKitPlugin'
  17. pod 'SVGKit', :git => 'https://github.com/SVGKit/SVGKit.git', :branch => '3.x'
  18. target 'deltachat-iosTests' do
  19. inherit! :search_paths
  20. # Pods for testing
  21. end
  22. end
  23. target 'DcShare' do
  24. platform :ios, '10.0'
  25. use_frameworks!
  26. swift_version = '4.2'
  27. # ignore all warnings from all dependencies
  28. inhibit_all_warnings!
  29. pod 'SDWebImage', '~> 5.9.1'
  30. pod 'SDWebImageWebPCoder'
  31. end