Podfile 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. use_frameworks!
  2. target 'Core_Example_iOS' do
  3. platform :ios, '8.0'
  4. pod 'FirebaseCommunity/Core', :path => '../'
  5. target 'Core_Tests_iOS' do
  6. inherit! :search_paths
  7. pod 'OCMock'
  8. end
  9. end
  10. target 'Core_Example_macOS' do
  11. platform :osx, '10.10'
  12. pod 'FirebaseCommunity/Core', :path => '../'
  13. target 'Core_Tests_macOS' do
  14. inherit! :search_paths
  15. pod 'OCMock'
  16. end
  17. end
  18. target 'Auth_Example_iOS' do
  19. platform :ios, '8.0'
  20. pod 'FirebaseCommunity/Auth', :path => '../'
  21. target 'Auth_Tests_iOS' do
  22. inherit! :search_paths
  23. pod 'OCMock'
  24. end
  25. end
  26. target 'Auth_Example_macOS' do
  27. platform :osx, '10.10'
  28. pod 'FirebaseCommunity/Auth', :path => '../'
  29. target 'Auth_Tests_macOS' do
  30. inherit! :search_paths
  31. pod 'OCMock'
  32. end
  33. end
  34. target 'Database_Example_iOS' do
  35. platform :ios, '8.0'
  36. pod 'FirebaseCommunity/Database', :path => '../'
  37. target 'Database_Tests_iOS' do
  38. inherit! :search_paths
  39. pod 'OCMock'
  40. end
  41. target 'Database_IntegrationTests_iOS' do
  42. inherit! :search_paths
  43. pod 'OCMock'
  44. end
  45. end
  46. target 'Database_Example_macOS' do
  47. platform :osx, '10.10'
  48. pod 'FirebaseCommunity/Database', :path => '../'
  49. target 'Database_Tests_macOS' do
  50. inherit! :search_paths
  51. pod 'OCMock'
  52. end
  53. target 'Database_IntegrationTests_macOS' do
  54. inherit! :search_paths
  55. pod 'OCMock'
  56. end
  57. end
  58. target 'Messaging_Example_iOS' do
  59. platform :ios, '8.0'
  60. pod 'FirebaseCommunity/Messaging', :path => '../'
  61. pod 'FirebaseInstanceID'
  62. target 'Messaging_Tests_iOS' do
  63. inherit! :search_paths
  64. pod 'OCMock'
  65. end
  66. end
  67. target 'Storage_Example_iOS' do
  68. platform :ios, '8.0'
  69. pod 'FirebaseCommunity/Storage', :path => '../'
  70. target 'Storage_Tests_iOS' do
  71. inherit! :search_paths
  72. pod 'OCMock'
  73. end
  74. target 'Storage_IntegrationTests_iOS' do
  75. inherit! :search_paths
  76. pod 'OCMock'
  77. end
  78. end
  79. target 'Storage_Example_macOS' do
  80. platform :osx, '10.10'
  81. pod 'FirebaseCommunity/Storage', :path => '../'
  82. target 'Storage_Tests_macOS' do
  83. inherit! :search_paths
  84. pod 'OCMock'
  85. end
  86. target 'Storage_IntegrationTests_macOS' do
  87. inherit! :search_paths
  88. pod 'OCMock'
  89. end
  90. end