podfile 860 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Uncomment the next line to define a global platform for your project
  2. # platform :ios, '9.0'
  3. def all_pods
  4. inhibit_all_warnings!
  5. pod 'ReactiveSwift', '~> 4.0'
  6. pod 'ReactiveCocoa', '~> 8.0'
  7. pod 'Alamofire'
  8. pod 'RNCryptor', '~> 5.0'
  9. pod 'ZBarSDK'
  10. pod 'Fabric'
  11. pod 'Crashlytics'
  12. end
  13. target 'kunkuk' do
  14. # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  15. use_frameworks!
  16. all_pods
  17. target 'MCPlusTests' do
  18. inherit! :search_paths
  19. all_pods
  20. end
  21. end
  22. target 'kunkuk_dev' do
  23. # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  24. use_frameworks!
  25. all_pods
  26. end
  27. target 'kunkuk_inhouse' do
  28. # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  29. use_frameworks!
  30. all_pods
  31. end