Podfile 791 B

1234567891011121314151617181920212223242526272829303132333435
  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 'SCSiriWaveformView'
  13. pod 'SDWebImage', '~> 5.9.1'
  14. pod 'SDWebImageWebPCoder'
  15. pod 'SDWebImageSVGKitPlugin'
  16. pod 'SVGKit', :git => 'https://github.com/SVGKit/SVGKit.git', :branch => '3.x'
  17. target 'deltachat-iosTests' do
  18. inherit! :search_paths
  19. # Pods for testing
  20. end
  21. end
  22. target 'DcShare' do
  23. platform :ios, '10.0'
  24. use_frameworks!
  25. swift_version = '4.2'
  26. # ignore all warnings from all dependencies
  27. inhibit_all_warnings!
  28. pod 'SDWebImage', '~> 5.9.1'
  29. pod 'SDWebImageWebPCoder'
  30. end