Podfile 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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 'Core_Example_tvOS' do
  19. platform :tvos, '10.0'
  20. pod 'FirebaseCommunity/Core', :path => '../'
  21. target 'Core_Tests_tvOS' do
  22. inherit! :search_paths
  23. pod 'OCMock'
  24. end
  25. end
  26. target 'Auth_Example_iOS' do
  27. platform :ios, '8.0'
  28. pod 'FirebaseCommunity/Auth', :path => '../'
  29. target 'Auth_Tests_iOS' do
  30. inherit! :search_paths
  31. pod 'OCMock'
  32. end
  33. end
  34. target 'Auth_Example_macOS' do
  35. platform :osx, '10.10'
  36. pod 'FirebaseCommunity/Auth', :path => '../'
  37. target 'Auth_Tests_macOS' do
  38. inherit! :search_paths
  39. pod 'OCMock'
  40. end
  41. end
  42. target 'Auth_Sample' do
  43. platform :ios, '8.0'
  44. pod 'FirebaseCommunity/Auth', :path => '../'
  45. pod 'FBSDKLoginKit'
  46. pod 'GoogleSignIn'
  47. # to FirebaseCore
  48. pod 'FirebaseInstanceID'
  49. pod 'GTMSessionFetcher/Core'
  50. end
  51. target 'Auth_SwiftSample' do
  52. platform :ios, '8.0'
  53. pod 'FirebaseCommunity/Auth', :path => '../'
  54. pod 'GoogleSignIn'
  55. pod 'FirebaseInstanceID'
  56. end
  57. target 'Auth_ApiTests' do
  58. platform :ios, '8.0'
  59. pod 'FirebaseCommunity/Auth', :path => '../'
  60. pod 'GoogleSignIn'
  61. pod 'FirebaseInstanceID'
  62. pod 'GTMSessionFetcher/Core'
  63. end
  64. target 'Auth_EarlGreyTests' do
  65. platform :ios, '8.0'
  66. pod 'FirebaseCommunity/Auth', :path => '../'
  67. pod 'GoogleSignIn'
  68. pod 'FirebaseInstanceID'
  69. pod 'EarlGrey'
  70. end
  71. target 'Database_Example_iOS' do
  72. platform :ios, '8.0'
  73. pod 'FirebaseCommunity/Database', :path => '../'
  74. target 'Database_Tests_iOS' do
  75. inherit! :search_paths
  76. pod 'OCMock'
  77. end
  78. target 'Database_IntegrationTests_iOS' do
  79. inherit! :search_paths
  80. pod 'OCMock'
  81. end
  82. end
  83. target 'Database_Example_tvOS' do
  84. platform :tvos, '10.0'
  85. pod 'FirebaseCommunity/Database', :path => '../'
  86. target 'Database_Tests_tvOS' do
  87. inherit! :search_paths
  88. pod 'OCMock'
  89. end
  90. # TODO
  91. # target 'Database_IntegrationTests_tvOS' do
  92. # inherit! :search_paths
  93. # pod 'OCMock'
  94. # end
  95. end
  96. target 'Database_Example_macOS' do
  97. platform :osx, '10.10'
  98. pod 'FirebaseCommunity/Database', :path => '../'
  99. target 'Database_Tests_macOS' do
  100. inherit! :search_paths
  101. pod 'OCMock'
  102. end
  103. target 'Database_IntegrationTests_macOS' do
  104. inherit! :search_paths
  105. pod 'OCMock'
  106. end
  107. end
  108. target 'Messaging_Example_iOS' do
  109. platform :ios, '8.0'
  110. pod 'FirebaseCommunity/Messaging', :path => '../'
  111. pod 'FirebaseInstanceID'
  112. target 'Messaging_Tests_iOS' do
  113. inherit! :search_paths
  114. pod 'OCMock'
  115. end
  116. end
  117. target 'Storage_Example_iOS' do
  118. platform :ios, '8.0'
  119. pod 'FirebaseCommunity/Storage', :path => '../'
  120. target 'Storage_Tests_iOS' do
  121. inherit! :search_paths
  122. pod 'OCMock'
  123. end
  124. target 'Storage_IntegrationTests_iOS' do
  125. inherit! :search_paths
  126. pod 'OCMock'
  127. end
  128. end
  129. target 'Storage_Example_macOS' do
  130. platform :osx, '10.10'
  131. pod 'FirebaseCommunity/Storage', :path => '../'
  132. target 'Storage_Tests_macOS' do
  133. inherit! :search_paths
  134. pod 'OCMock'
  135. end
  136. target 'Storage_IntegrationTests_macOS' do
  137. inherit! :search_paths
  138. pod 'OCMock'
  139. end
  140. end
  141. target 'Storage_Example_tvOS' do
  142. platform :tvos, '10.0'
  143. pod 'FirebaseCommunity/Storage', :path => '../'
  144. target 'Storage_Tests_tvOS' do
  145. inherit! :search_paths
  146. pod 'OCMock'
  147. end
  148. #TODO Storage_IntegrationTests_tvOS
  149. # target 'Storage_IntegrationTests_tvOS' do
  150. # inherit! :search_paths
  151. # pod 'OCMock'
  152. # end
  153. end