Podfile 741 B

123456789101112131415161718192021222324252627282930313233343536
  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 'KK-ALCameraViewController'
  10. # pod 'openssl-ios-bitcode'
  11. pod 'ReachabilitySwift'
  12. pod 'UICircularProgressRing'
  13. pod 'SwiftyBeaver'
  14. pod 'DBDebugToolkit'
  15. pod 'InputBarAccessoryView'
  16. pod 'SCSiriWaveformView'
  17. pod 'SDWebImage', '~> 5.0'
  18. target 'deltachat-iosTests' do
  19. inherit! :search_paths
  20. # Pods for testing
  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.0'
  29. end
  30. end