Podfile 583 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 'ALCameraViewController', :git => 'https://github.com/dignifiedquire/ALCameraViewController'
  10. # pod 'openssl-ios-bitcode'
  11. pod 'ReachabilitySwift'
  12. pod 'QuickTableViewController'
  13. pod 'UICircularProgressRing'
  14. pod 'JGProgressHUD'
  15. pod 'SwiftyBeaver'
  16. pod 'DBDebugToolkit'
  17. target 'deltachat-iosTests' do
  18. inherit! :search_paths
  19. # Pods for testing
  20. end
  21. end