Podfile 541 B

123456789101112131415161718192021222324
  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 'JGProgressHUD'
  14. pod 'SwiftyBeaver'
  15. pod 'DBDebugToolkit'
  16. pod 'InputBarAccessoryView'
  17. pod 'SCSiriWaveformView'
  18. target 'deltachat-iosTests' do
  19. inherit! :search_paths
  20. # Pods for testing
  21. end
  22. end