Podfile 681 B

123456789101112131415161718192021222324252627282930313233
  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. target 'deltachat-iosTests' do
  17. inherit! :search_paths
  18. # Pods for testing
  19. end
  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