Podfile 850 B

12345678910111213141516171819202122232425262728293031323334353637
  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 'InputBarAccessoryView'
  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. target 'deltachat-iosTests' do
  20. inherit! :search_paths
  21. # Pods for testing
  22. end
  23. end
  24. target 'DcShare' do
  25. platform :ios, '10.0'
  26. use_frameworks!
  27. swift_version = '4.2'
  28. # ignore all warnings from all dependencies
  29. inhibit_all_warnings!
  30. pod 'SDWebImage', '~> 5.9.1'
  31. pod 'SDWebImageWebPCoder'
  32. end