Podfile 711 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 'SwiftLint'
  8. pod 'SwiftFormat/CLI'
  9. # pod 'openssl-ios-bitcode'
  10. pod 'ReachabilitySwift'
  11. pod 'UICircularProgressRing'
  12. pod 'SwiftyBeaver'
  13. pod 'DBDebugToolkit'
  14. pod 'InputBarAccessoryView'
  15. pod 'SCSiriWaveformView'
  16. pod 'SDWebImage', '~> 5.9.1'
  17. target 'deltachat-iosTests' do
  18. inherit! :search_paths
  19. # Pods for testing
  20. end
  21. target 'DcShare' do
  22. platform :ios, '10.0'
  23. use_frameworks!
  24. swift_version = '4.2'
  25. # ignore all warnings from all dependencies
  26. inhibit_all_warnings!
  27. pod 'SDWebImage', '~> 5.9.1'
  28. end
  29. end