Podfile 862 B

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