Podfile 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. use_frameworks!
  2. pod 'FirebaseCore', :path => '../'
  3. target 'Core_Example_iOS' do
  4. platform :ios, '8.0'
  5. # The next line is the forcing function for the Firebase pod. The Firebase
  6. # version's subspecs should depend on the component versions in their
  7. # corresponding podspec's.
  8. pod 'Firebase/Core', '4.7.0'
  9. target 'Core_Tests_iOS' do
  10. inherit! :search_paths
  11. pod 'OCMock'
  12. end
  13. end
  14. target 'Auth_Example_iOS' do
  15. platform :ios, '8.0'
  16. pod 'FirebaseAuth', :path => '../'
  17. target 'Auth_Tests_iOS' do
  18. inherit! :search_paths
  19. pod 'OCMock'
  20. end
  21. end
  22. target 'Database_Example_iOS' do
  23. platform :ios, '8.0'
  24. pod 'FirebaseDatabase', :path => '../'
  25. target 'Database_Tests_iOS' do
  26. inherit! :search_paths
  27. pod 'OCMock'
  28. end
  29. target 'Database_IntegrationTests_iOS' do
  30. inherit! :search_paths
  31. pod 'OCMock'
  32. end
  33. end
  34. target 'Messaging_Example_iOS' do
  35. platform :ios, '8.0'
  36. pod 'FirebaseMessaging' , :path => '../'
  37. pod 'FirebaseInstanceID'
  38. target 'Messaging_Tests_iOS' do
  39. inherit! :search_paths
  40. pod 'OCMock'
  41. end
  42. end
  43. target 'Storage_Example_iOS' do
  44. platform :ios, '8.0'
  45. pod 'FirebaseStorage', :path => '../'
  46. target 'Storage_Tests_iOS' do
  47. inherit! :search_paths
  48. pod 'OCMock'
  49. end
  50. target 'Storage_IntegrationTests_iOS' do
  51. inherit! :search_paths
  52. pod 'OCMock'
  53. end
  54. end
  55. target 'Auth_Sample' do
  56. platform :ios, '8.0'
  57. pod 'FirebaseAuth', :path => '../'
  58. pod 'FirebaseCore', :path => '../'
  59. pod 'FBSDKLoginKit'
  60. pod 'GoogleSignIn'
  61. pod 'FirebaseInstanceID'
  62. pod 'GTMSessionFetcher/Core'
  63. target 'Auth_ApiTests' do
  64. inherit! :search_paths
  65. end
  66. target 'Auth_EarlGreyTests' do
  67. inherit! :search_paths
  68. pod 'EarlGrey'
  69. end
  70. end
  71. target 'Auth_SwiftSample' do
  72. platform :ios, '8.0'
  73. pod 'FirebaseAuth', :path => '../'
  74. pod 'FirebaseCore', :path => '../'
  75. pod 'GoogleSignIn'
  76. pod 'FirebaseInstanceID'
  77. end
  78. target 'Core_Example_macOS' do
  79. platform :osx, '10.10'
  80. pod 'FirebaseCore', :path => '../'
  81. target 'Core_Tests_macOS' do
  82. inherit! :search_paths
  83. pod 'OCMock'
  84. end
  85. end
  86. target 'Auth_Example_macOS' do
  87. platform :osx, '10.10'
  88. pod 'FirebaseAuth', :path => '../'
  89. target 'Auth_Tests_macOS' do
  90. inherit! :search_paths
  91. pod 'OCMock'
  92. end
  93. end
  94. target 'Database_Example_macOS' do
  95. platform :osx, '10.10'
  96. pod 'FirebaseDatabase', :path => '../'
  97. target 'Database_Tests_macOS' do
  98. inherit! :search_paths
  99. pod 'OCMock'
  100. end
  101. target 'Database_IntegrationTests_macOS' do
  102. inherit! :search_paths
  103. pod 'OCMock'
  104. end
  105. end
  106. target 'Storage_Example_macOS' do
  107. platform :osx, '10.10'
  108. pod 'FirebaseStorage', :path => '../'
  109. target 'Storage_Tests_macOS' do
  110. inherit! :search_paths
  111. pod 'OCMock'
  112. end
  113. target 'Storage_IntegrationTests_macOS' do
  114. inherit! :search_paths
  115. pod 'OCMock'
  116. end
  117. end